Skip to content

Commit

Permalink
➕ Add Windows collections
Browse files Browse the repository at this point in the history
  • Loading branch information
bdsoha committed Dec 15, 2024
1 parent 49485dd commit eab98dc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ARG TARGETARCH
# renovate: source=github-releases dep=google/go-containerregistry
ARG crane_version=0.20.2

RUN case ${TARGETARCH} in "arm64") file=amr64 ;; "amd64") file=x86_64 ;; esac \
RUN case ${TARGETARCH} in "arm64") file=arm64 ;; "amd64") file=x86_64 ;; esac \
&& curl -fsSL "https://github.com/google/go-containerregistry/releases/download/v${crane_version}/go-containerregistry_Linux_${file}.tar.gz" \
| tar -xzf - \
&& curl -fsSL "https://mirror.openshift.com/pub/openshift-v4/${file}/clients/ocp/4.17.5/openshift-client-linux.tar.gz" \
Expand Down
2 changes: 1 addition & 1 deletion src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ansible-core==2.18.0
ansible-core==2.18.1
docker==7.1.0
kubernetes==31.0.0
netaddr==1.3.0
Expand Down
13 changes: 11 additions & 2 deletions src/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
---
collections:
- name: ansible.posix
version: 1.6.2
version: 2.0.0

- name: ansible.windows
version: 2.6.0

- name: community.crypto
version: 2.22.3

- name: community.docker
version: 4.1.0

- name: community.general
version: 10.0.1
version: 10.1.0

- name: community.windows
version: 2.3.0

- name: kubernetes.core
version: 5.0.0

0 comments on commit eab98dc

Please sign in to comment.