Skip to content

Commit

Permalink
Update README.md with action versions (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamero authored Apr 3, 2023
1 parent 61041e8 commit f4b18af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ jobs:
- uses: actions/checkout@v3
- name: Running L0 tests.
run: |
sudo npm install n
sudo n latest
npm install
npm test
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sets output variable 'manifestsBundle' which contains the location of the manife
#### Bake using helm

```yaml
- uses: azure/k8s-bake@v2.2
- uses: azure/k8s-bake@v2.4
with:
renderEngine: 'helm'
helmChart: './aks-helloworld/'
Expand All @@ -26,7 +26,7 @@ Sets output variable 'manifestsBundle' which contains the location of the manife
#### Bake using Kompose
```yaml
- uses: azure/k8s-bake@v2.2
- uses: azure/k8s-bake@v2.4
with:
renderEngine: 'kompose'
dockerComposeFile: './docker-compose.yml'
Expand All @@ -36,7 +36,7 @@ Sets output variable 'manifestsBundle' which contains the location of the manife
#### Bake using Kubernetes Kustomize
```yaml
- uses: azure/k8s-bake@v2.2
- uses: azure/k8s-bake@v2.4
with:
renderEngine: 'kustomize'
kustomizationPath: './kustomizeexample/'
Expand Down Expand Up @@ -69,18 +69,18 @@ jobs:
docker build . -t contoso.azurecr.io/k8sdemo:${{ github.sha }}
docker push contoso.azurecr.io/k8sdemo:${{ github.sha }}
- uses: Azure/k8s-set-context@v1
- uses: Azure/k8s-set-context@v3
with:
kubeconfig: ${{ secrets.KUBE_CONFIG }}

- uses: Azure/k8s-create-secret@v1
- uses: Azure/k8s-create-secret@v4
with:
container-registry-url: contoso.azurecr.io
container-registry-username: ${{ secrets.REGISTRY_USERNAME }}
container-registry-password: ${{ secrets.REGISTRY_PASSWORD }}
secret-name: demo-k8s-secret

- uses: azure/k8s-bake@v2.2
- uses: azure/k8s-bake@v2.4
with:
renderEngine: 'helm'
helmChart: './aks-helloworld/'
Expand All @@ -90,7 +90,7 @@ jobs:
helm-version: 'latest'
id: bake

- uses: Azure/k8s-deploy@v1
- uses: Azure/k8s-deploy@v4
with:
manifests: ${{ steps.bake.outputs.manifestsBundle }}
images: |
Expand Down

0 comments on commit f4b18af

Please sign in to comment.