Sha256: a9a21b9806eed21b1cb17131779167d722ed9c5c9806dbc7c29306f328be635a

Contents?: true

Size: 1.9 KB

Versions: 7

Compression:

Stored size: 1.9 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: HelmUpgradeLogs

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

permissions:
  contents: read

jobs:
  demo_install_run_gem:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['3.0']
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Start KIND cluster
        run: bash -f bin/start_kind.sh
      - name: Waiting for KIND cluster to get ready
        run: sleep 70
      - name: Install gem
        run: gem install helm_upgrade_logs
      - name: Add bitnami repo
        run: helm repo add bitnami https://charts.bitnami.com/bitnami
      - name: Helm install debugging logs
        run: helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP

  test_exe:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['3.0']

    steps:
    - uses: actions/checkout@v3
    - name: Start KIND cluster
      run: bash -f bin/start_kind.sh
#    - name: Waiting for KIND cluster to get ready
#      run: sleep 70
    - name: Add bitnami repo
      run: helm repo add bitnami https://charts.bitnami.com/bitnami
    - name: Install bitnami
      run: ./exe/helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP --set replicaCount=2
    - name: Install Redis
      run: ./exe/helm_upgrade_logs --install redis bitnami/redis --set auth.enabled=false --version 14.0.2 --wait

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
helm_upgrade_logs-0.2.3 .github/workflows/test.yml
helm_upgrade_logs-0.2.2 .github/workflows/test.yml
helm_upgrade_logs-0.2.1 .github/workflows/test.yml
helm_upgrade_logs-0.2.0 .github/workflows/test.yml
helm_upgrade_logs-0.1.7 .github/workflows/test.yml
helm_upgrade_logs-0.1.6 .github/workflows/test.yml
helm_upgrade_logs-0.1.5 .github/workflows/test.yml