diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11f0d52c9a..401487178a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -432,6 +432,8 @@ jobs: ./k8-util/cluster/reset-k3d.sh k3d image import -k /tmp/infinyon-fluvio.tar -c fluvio make FLUVIO_BIN=./fluvio TEST_BIN=./flv-test smoke-test-k8-tls-root + - name: Print version + run: ./fluvio version - name: Save logs if: failure() @@ -455,6 +457,7 @@ jobs: k8_upgrade_test: name: Upgrade cluster test + if: ${{ false }} needs: build_image runs-on: ${{ matrix.os }} strategy: @@ -525,7 +528,7 @@ jobs: - build_binaries - local_cluster_test - k8_cluster_test - - k8_upgrade_test + # - k8_upgrade_test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/k8-util/helm/fluvio-app/templates/sc-deployment.yaml b/k8-util/helm/fluvio-app/templates/sc-deployment.yaml index 2e70aa2d6b..8f76ad54ea 100644 --- a/k8-util/helm/fluvio-app/templates/sc-deployment.yaml +++ b/k8-util/helm/fluvio-app/templates/sc-deployment.yaml @@ -19,7 +19,7 @@ spec: {{- toYaml .Values.scPod.nodeSelector | nindent 8 }} containers: - name: fluvio-sc - image: {{ .Values.image.registry }}/fluvio:{{ .Values.image.tag | default .Chart.Version }} + image: {{ .Values.image.registry }}/fluvio:{{ .Values.image.tag | default .Chart.AppVersion }} imagePullPolicy: {{ .Values.image.pullPolicy }} resources: {{- toYaml .Values.scPod.resources | nindent 12 }}