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

update kubeone version & adjust ansible-playbook #1599

Merged
merged 5 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions manifests/claudie/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: ghcr.io/berops/claudie/ansibler
newTag: 6928ace-3165
newTag: 93b845e-3178
- name: ghcr.io/berops/claudie/autoscaler-adapter
newTag: 6928ace-3165
- name: ghcr.io/berops/claudie/builder
newTag: 6928ace-3165
- name: ghcr.io/berops/claudie/claudie-operator
newTag: 6928ace-3165
- name: ghcr.io/berops/claudie/kube-eleven
newTag: 6928ace-3165
newTag: 93b845e-3178
- name: ghcr.io/berops/claudie/kuber
newTag: 6928ace-3165
- name: ghcr.io/berops/claudie/manager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
state: present
regexp: '^{{ item.name }}='
line: '{{ item.name }}="{{ item.value }}"'
backrefs: yes
loop:
- { name: 'HTTP_PROXY', value: '{{ http_proxy_url }}' }
- { name: 'HTTPS_PROXY', value: '{{ http_proxy_url }}' }
Expand Down
2 changes: 1 addition & 1 deletion services/kube-eleven/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG TARGETARCH

# download and unzip kube-one binary
RUN apt-get -qq update && apt-get -qq install unzip
RUN KUBEONE_V=1.8.1 && \
RUN KUBEONE_V=1.9.0 && \
wget -q https://github.com/kubermatic/kubeone/releases/download/v${KUBEONE_V}/kubeone_${KUBEONE_V}_linux_$TARGETARCH.zip && \
unzip -qq kubeone_${KUBEONE_V}_linux_$TARGETARCH.zip -d kubeone_dir

Expand Down