diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 237a6e10..320df3f3 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,6 +2,6 @@ apiVersion: v2 name: kro description: A Helm chart for kro type: application -version: 0.2.0 -appVersion: "0.2.0" +version: 0.2.1 +appVersion: "0.2.1" home: https://kro.run/ diff --git a/helm/values.yaml b/helm/values.yaml index 4d662dab..827ab45d 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -11,7 +11,7 @@ image: # The location of the container image repository repository: ghcr.io/kro-run/kro/controller # Overrides the image tag whose default is the chart appVersion. - tag: "0.2.0" + tag: "0.2.1" # Ignores the repository and tag settings and uses the controllers ko entrypoint. ko: false # Image pull policy (IfNotPresent: pull the image only if it is not present locally) diff --git a/pkg/client/set.go b/pkg/client/set.go index 6d291ae7..e606fbc2 100644 --- a/pkg/client/set.go +++ b/pkg/client/set.go @@ -62,7 +62,7 @@ func NewSet(cfg Config) (*Set, error) { if config.Burst == 0 { config.Burst = cfg.Burst } - config.UserAgent = "kro/0.2.0" + config.UserAgent = "kro/0.2.1" c := &Set{config: config} if err := c.init(); err != nil { diff --git a/pkg/controller/resourcegraphdefinition/controller.go b/pkg/controller/resourcegraphdefinition/controller.go index da287264..6fd9dda4 100644 --- a/pkg/controller/resourcegraphdefinition/controller.go +++ b/pkg/controller/resourcegraphdefinition/controller.go @@ -72,7 +72,7 @@ func NewResourceGraphDefinitionReconciler( allowCRDDeletion: allowCRDDeletion, crdManager: crdWrapper, dynamicController: dynamicController, - metadataLabeler: metadata.NewKroMetaLabeler("0.2.0", "kro-pod"), + metadataLabeler: metadata.NewKroMetaLabeler("0.2.1", "kro-pod"), rgBuilder: builder, } }