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

docs: Dotnet init windows latest tag #10

Merged
merged 2 commits into from
Oct 30, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ jobs:
--amend ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows-ltsc2019-amd64:${{ env.VERSION }} \
--amend ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows-ltsc2022-amd64:${{ env.VERSION }}

docker manifest create ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows:latest \
--amend ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows-ltsc2019-amd64:${{ env.VERSION }} \
--amend ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows-ltsc2022-amd64:${{ env.VERSION }}

- name: Docker Annotate
run: |
docker manifest annotate --os windows --arch amd64 \
Expand All @@ -104,3 +108,4 @@ jobs:
- name: Docker Push Manifest
run: |
docker manifest push ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows:${{ env.VERSION }}
docker manifest push ghcr.io/${{ github.repository_owner }}/k8s-agents-operator-windows/newrelic-dotnet-init-windows:latest
2 changes: 1 addition & 1 deletion charts/k8s-agents-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ maintainers:
- name: danielstokes
url: https://github.com/danielstokes
- name: andrew-lozoya
url: https://github.com/andrew-lozoya
url: https://github.com/andrew-lozoya
3 changes: 2 additions & 1 deletion charts/k8s-agents-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ spec:
image: newrelic/newrelic-dotnet-init:latest
# env: ...
```

For .NET on Windows

```yaml
Expand All @@ -65,7 +66,7 @@ metadata:
spec:
agent:
language: dotnet-windows
image: ghrc.io/andrew-lozoya/newrelic-dotnet-windows-init:latest
image: ghrc.io/newrelic-experimental/newrelic-dotnet-windows-init:latest
# env: ...
```

Expand Down
3 changes: 2 additions & 1 deletion charts/k8s-agents-operator/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ spec:
image: newrelic/newrelic-dotnet-init:latest
# env: ...
```

For .NET on Windows

```yaml
Expand All @@ -67,7 +68,7 @@ metadata:
spec:
agent:
language: dotnet-windows
image: ghrc.io/andrew-lozoya/newrelic-dotnet-windows-init:latest
image: ghrc.io/newrelic-experimental/newrelic-dotnet-windows-init:latest
# env: ...
```

Expand Down
Loading