1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

Hotfix/ci (#905)

* docs update and fixed issue for docker push on release
This commit is contained in:
Yuvraj 2020-06-04 14:31:54 -07:00 committed by GitHub
parent b6cf90909f
commit d51807aac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 9 deletions

View file

@ -29,12 +29,19 @@ jobs:
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- uses: azure/docker-login@v1
- uses: docker/build-push-action@v1
with:
login-server: index.docker.io
username: ${{ secrets.DOCKERIO_USERNAME }}
password: ${{ secrets.DOCKERIO_PASSWORD }}
- run: |
docker push nirmata/kyverno
docker push nirmata/kyvernopre
repository: nirmata/kyverno
tag_with_ref: true
tag_with_sha: true
- uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKERIO_USERNAME }}
password: ${{ secrets.DOCKERIO_PASSWORD }}
repository: nirmata/kyvernopre
tag_with_ref: true
tag_with_sha: true

View file

@ -12,10 +12,10 @@
```console
## Add the nirmata Helm repository
$ helm repo add kyverno https://nirmata.github.io/kyverno/helm-charts/
$ helm repo add kyverno https://nirmata.github.io/kyverno
## Install the kyverno helm chart
$ helm install --name my-release --namespace kyverno nirmata/kyverno
$ helm install --name my-release --namespace kyverno kyverno/kyverno
$ helm install --create-namespace -n kyverno kyverno ./charts/kyverno
```

View file

@ -8,10 +8,10 @@ You can install Kyverno using the Helm chart or YAML files in this repository.
```sh
## Add the nirmata Helm repository
helm repo add kyverno https://nirmata.github.io/kyverno/helm-charts/
helm repo add kyverno https://nirmata.github.io/kyverno/
## Install the kyverno helm chart
helm install --name my-release --namespace kyverno nirmata/kyverno
helm install --name my-release --namespace kyverno kyverno/kyverno
```