Skip to content

Update policy-controller to v0.12.0-github12 #86

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

Merged
merged 1 commit into from
Apr 10, 2025
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ the [Attest Build Provenance Action](https://github.com/github/artifact-attestat
You can verify these releases using the [`gh` CLI](https://cli.github.com/manual/gh_attestation_verify):
```bash
gh attestation verify --owner github \
oci://ghcr.io/github/artifact-attestations-helm-charts/policy-controller:v0.12.0-github10
oci://ghcr.io/github/artifact-attestations-helm-charts/policy-controller:v0.12.0-github12
```

For more information, see [our documentation](https://docs.github.com/en/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds) on using artifact attestations to establish build provenance and [our blog post](https://github.blog/2024-05-02-introducing-artifact-attestations-now-in-public-beta/) introducing Artifact Attestations.
Expand All @@ -26,7 +26,7 @@ You will need to install two charts. First, install the Sigstore policy controll
helm install policy-controller --atomic \
--create-namespace --namespace artifact-attestations \
oci://ghcr.io/github/artifact-attestations-helm-charts/policy-controller \
--version v0.12.0-github10
--version v0.12.0-github12
```

The `--atomic` flag will delete the installation if failure occurs.
Expand Down Expand Up @@ -91,8 +91,8 @@ please file an [issue](https://github.com/github/artifact-attestations-helm-char
When you are ready to cut a new release for a given Helm chart

1. Update the chart's `AppVersion` and `Version` to the appropriate values
1. Create a new tag prefixed with the targeted chart name in the format <my-chart-name>-v0.1.2, ex: `git tag -s "policy-controller-v0.12.0-github10" -m "policy-controller-v0.12.0-github10"`
1. Push the tag, ex: `git push origin "policy-controller-v0.12.0-github10"`
1. Create a new tag prefixed with the targeted chart name in the format <my-chart-name>-v0.1.2, ex: `git tag -s "policy-controller-v0.12.0-github12" -m "policy-controller-v0.12.0-github12"`
1. Push the tag, ex: `git push origin "policy-controller-v0.12.0-github12"`
1. The [release workflow](.github/workflows/release.yml) will be triggered if
the chart's tag format is included in the list of tags that trigger the workflow.
The tag must follow the format `<my-chart-name>-v<semantic-version>`
4 changes: 2 additions & 2 deletions charts/policy-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ sources:
type: application

name: policy-controller
version: "v0.12.0-github10"
appVersion: "v0.12.0-github10"
version: "v0.12.0-github12"
appVersion: "v0.12.0-github12"

maintainers:
- name: codysoyland
Expand Down
4 changes: 2 additions & 2 deletions charts/policy-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ webhook:
name: webhook
image:
repository: ghcr.io/github/policy-controller-webhook
# crane digest ghcr.io/github/policy-controller-webhook:v0.12.0-github10
version: sha256:9994eb53b3908a0a5735ad0fccbaea0ffca9e0818c6ad8761a70cf565338faf0
# crane digest ghcr.io/github/policy-controller-webhook:v0.12.0-github12
version: sha256:ab78d1c03f5f1fac5462015fbc32b024d19ce0e2aad6a0fd87400a1d443972ef
pullPolicy: IfNotPresent
env: {}
extraArgs: {}
Expand Down