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

[main] Change chart name to knative-istio-authz #14

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 Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
name: knative-istio-authz-onboarding
name: knative-istio-authz
description: Helm chart to onboard a set of authorization-based isolated namespaces to Knative when using Istio.
# A chart can be either an 'application' or a 'library' chart.
#
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ Imaging we want to onboard a new tenant named `tenant-1` to Knative composed of

2. Install the Helm chart
```shell
helm install oci://quay.io/openshift-knative/knative-istio-authz-onboarding --version 1.31.0 --set "name=tenant-1" --set "namespaces={ns1, ns2}"
helm install oci://quay.io/openshift-knative/knative-istio-authz --version 1.31.0 --set "name=tenant-1" --set "namespaces={ns1, ns2}"
```
or, view the resources you would need to onboard the project:
```shell
helm template oci://quay.io/openshift-knative/knative-istio-authz-onboarding --version 1.31.0 --set "name=tenant-1" --set "namespaces={ns1, ns2}"
helm template oci://quay.io/openshift-knative/knative-istio-authz --version 1.31.0 --set "name=tenant-1" --set "namespaces={ns1, ns2}"
```

## Development
Expand All @@ -43,7 +43,7 @@ helm package ./
Push the chart to your own account by running the following command:

```shell
helm push knative-istio-authz-onboarding-0.1.0.tgz oci://quay.io/<your-username>
helm push knative-istio-authz-0.1.0.tgz oci://quay.io/<your-username>
```

The chart is automatically pushed to quay.io/openshift-knative on `main` and `release-*` branches using CI.
Loading