This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of your changes
Upgrades Kyverno addon from chart version 3.6.2 to 3.7.0 (app version v1.16.2 → v1.17.0).
I have:
How has this code been tested
Tested the upgrade path from 3.6.2 (v1.16.2) to 3.7.0 (v1.17.0) in a local UXP environment (kind cluster):
> kubectl get addon upbound-addon-kyverno NAME INSTALLED HEALTHY PACKAGE AGE upbound-addon-kyverno True True xpkg.upbound.io/upbound/addon-kyverno:3.6.2 7m24s > kubectl get pods -n kyverno-system NAME READY STATUS RESTARTS AGE kyverno-admission-controller-55b698d49f-2zcz5 1/1 Running 0 2m35s kyverno-background-controller-7cd8777446-6d9wx 1/1 Running 0 2m35s kyverno-cleanup-controller-f549db969-ggkwz 1/1 Running 0 2m35s kyverno-reports-controller-6d4448cfc9-86b78 1/1 Running 0 2m35s > kubectl get pods -n kyverno-system -o jsonpath='{.items[*].spec.containers[0].image}' | tr ' ' '\n' xpkg.upbound.io/upbound/kyverno:v1.16.2 xpkg.upbound.io/upbound/kyverno-background-controller:v1.16.2 xpkg.upbound.io/upbound/kyverno-cleanup-controller:v1.16.2 xpkg.upbound.io/upbound/kyverno-reports-controller:v1.16.2% > kubectl get clusterpolicy NAME ADMISSION BACKGROUND READY AGE MESSAGE require-labels true true True 29s Ready > kubectl get addon upbound-addon-kyverno NAME INSTALLED HEALTHY PACKAGE AGE upbound-addon-kyverno True True xpkg.upbound.io/upbound/addon-kyverno:3.7.0-5699fb9 20m > kubectl get pods -n kyverno-system -o jsonpath='{.items[*].spec.containers[0].image}' | tr ' ' '\n' xpkg.upbound.io/upbound/kyverno:v1.17.0 xpkg.upbound.io/upbound/kyverno-background-controller:v1.17.0 xpkg.upbound.io/upbound/kyverno-cleanup-controller:v1.17.0 xpkg.upbound.io/upbound/kyverno-cli:v1.17.0 xpkg.upbound.io/upbound/kyverno-reports-controller:v1.17.0% > kubectl get clusterpolicy NAME ADMISSION BACKGROUND READY AGE MESSAGE require-labels true true True 11m Ready