diff --git a/renovate.json5 b/.github/renovate.json5 similarity index 82% rename from renovate.json5 rename to .github/renovate.json5 index 6163dfc..83527f0 100644 --- a/renovate.json5 +++ b/.github/renovate.json5 @@ -19,5 +19,10 @@ "suppressNotifications": [ "prIgnoreNotification" ], - "timezone": "America/Toronto" + "timezone": "America/Toronto", + "vulnerabilityAlerts": { + "labels": [ + "security" + ] + } } diff --git a/README.md b/README.md index d5b1464..f2d262c 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ You can also test the operator locally in a minikube context. ```bash # Choose a specific ref and tag if needed REF=master -TAG=0.6.4 +TAG=0.7.0 cat < kustomization.yaml apiVersion: kustomize.config.k8s.io/v1beta1 diff --git a/kubernetes/auth-operator.yaml b/kubernetes/auth-operator.yaml index 6765d2d..9f2edf8 100644 --- a/kubernetes/auth-operator.yaml +++ b/kubernetes/auth-operator.yaml @@ -25,7 +25,7 @@ spec: - --verbose - --liveness=http://0.0.0.0:8080/healthz - --standalone - image: coveo/aws-auth-operator:0.1 + image: ghcr.io/coveooss/aws_auth_eks_crd:0.7.0 imagePullPolicy: IfNotPresent name: operator ports: diff --git a/kubernetes/kustomization.yaml b/kubernetes/kustomization.yaml index 86b014a..fa318c9 100644 --- a/kubernetes/kustomization.yaml +++ b/kubernetes/kustomization.yaml @@ -10,4 +10,4 @@ resources: images: - name: coveo/aws-auth-operator:0.1 newName: ghcr.io/coveooss/aws_auth_eks_crd - newTag: 0.6.4 + newTag: 0.7.0 diff --git a/pyproject.toml b/pyproject.toml index adf3088..b81f15f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws_auth_eks_crd" -version = "0.3.0" +version = "0.7.0" description = "Operator to configure the aws-auth config map with IamIdentityMappings" readme = "README.md" repository = "https://github.com/coveooss/aws_auth_eks_crd"