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

chore: prepare for 1.18.0 release #627

Merged
merged 2 commits into from
May 28, 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
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ spec:
# Note the lack of the `v` prefix unlike the git tag
env:
- name: AVP_VERSION
value: "1.16.2"
value: "1.18.0"
args:
- >-
wget -O argocd-vault-plugin
Expand Down Expand Up @@ -115,7 +115,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Install the AVP plugin (as root so we can copy to /usr/local/bin)
ENV AVP_VERSION=1.16.2
ENV AVP_VERSION=1.18.0
ENV BIN=argocd-vault-plugin
RUN curl -L -o ${BIN} https://github.com/argoproj-labs/argocd-vault-plugin/releases/download/v${AVP_VERSION}/argocd-vault-plugin_${AVP_VERSION}_linux_amd64
RUN chmod +x ${BIN}
Expand Down Expand Up @@ -190,7 +190,7 @@ spec:
image: registry.access.redhat.com/ubi8
env:
- name: AVP_VERSION
value: 1.16.2
value: 1.18.0
command: [sh, -c]
args:
- >-
Expand Down Expand Up @@ -274,7 +274,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Install the AVP plugin (as root so we can copy to /usr/local/bin)
ENV AVP_VERSION=1.16.2
ENV AVP_VERSION=1.18.0
ENV BIN=argocd-vault-plugin
RUN curl -L -o ${BIN} https://github.com/argoproj-labs/argocd-vault-plugin/releases/download/v${AVP_VERSION}/argocd-vault-plugin_${AVP_VERSION}_linux_amd64
RUN chmod +x ${BIN}
Expand Down
2 changes: 1 addition & 1 deletion manifests/cmp-configmap/argocd-repo-server-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
# Note the lack of the `v` prefix unlike the git tag
env:
- name: AVP_VERSION
value: "1.16.2"
value: "1.18.0"
args:
- >-
wget -O argocd-vault-plugin
Expand Down
2 changes: 1 addition & 1 deletion manifests/cmp-sidecar/argocd-repo-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
image: registry.access.redhat.com/ubi8
env:
- name: AVP_VERSION
value: 1.16.2
value: 1.18.0
command: [sh, -c]
args:
- >-
Expand Down
Loading