Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix issue with kubectl latest tag image #619

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/policy-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sources:
type: application

name: policy-controller
version: 0.6.4
version: 0.6.5
appVersion: 0.8.2

maintainers:
Expand Down
4 changes: 2 additions & 2 deletions charts/policy-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# policy-controller

![Version: 0.6.4](https://img.shields.io/badge/Version-0.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.2](https://img.shields.io/badge/AppVersion-0.8.2-informational?style=flat-square)
![Version: 0.6.5](https://img.shields.io/badge/Version-0.6.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.2](https://img.shields.io/badge/AppVersion-0.8.2-informational?style=flat-square)

The Helm chart for Policy Controller

Expand Down Expand Up @@ -68,7 +68,7 @@ The Helm chart for Policy Controller
| webhook.volumes | list | `[]` | |
| leasescleanup.image.pullPolicy | string | `"IfNotPresent"` | |
| leasescleanup.image.repository | string | `"cgr.dev/chainguard/kubectl"` | |
| leasescleanup.image.version | string | `"latest"` | |
| leasescleanup.image.version | string | `"latest-dev"` | `"NOTE: use latest-dev tag because leases cleanup job needs /bin/sh, not present in latest tag"` |

### Deploy `policy-controller` Helm Chart

Expand Down
4 changes: 3 additions & 1 deletion charts/policy-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ webhook:
leasescleanup:
image:
repository: cgr.dev/chainguard/kubectl
version: latest
version: latest-dev
pullPolicy: IfNotPresent

## common node selector for all the pods
Expand All @@ -84,6 +84,8 @@ commonTolerations: []

## This will set some annotations in config maps and secrets. Use case: Disable versioning to deploy helm chart using spinnaker
commonAnnotations: {}
# strategy.spinnaker.io/versioned: "false"
k4leung4 marked this conversation as resolved.
Show resolved Hide resolved
# key2: value2

## serviceMonitor makes policy controller metrics discoverable to prometheus
serviceMonitor:
Expand Down