Skip to content

Commit

Permalink
update kubeone version & adjust ansible-playbook (#1599)
Browse files Browse the repository at this point in the history
adds `backrefs` to the update proxy envs ansible playbook. Without this
the environment variables would be appended to the end of the file each
time and after 5 runes the entire /etc/environment file would be
cluttered with these variables. With `backrefs` they will be overwritten
every time.

Closes #1598
Closes #1365

Based on the Kubeone 1.9 release docs, there does seem not to be any
backwards incompatibility issues

---------

Co-authored-by: CI/CD pipeline <CI/[email protected]>
  • Loading branch information
Despire and CI/CD pipeline authored Dec 6, 2024
1 parent 956d889 commit 7d1490a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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: f95dd2b-3176
newTag: bd26f53-3179
- name: ghcr.io/berops/claudie/autoscaler-adapter
newTag: f95dd2b-3176
- name: ghcr.io/berops/claudie/builder
newTag: f95dd2b-3176
- name: ghcr.io/berops/claudie/claudie-operator
newTag: f95dd2b-3176
- name: ghcr.io/berops/claudie/kube-eleven
newTag: f95dd2b-3176
newTag: bd26f53-3179
- name: ghcr.io/berops/claudie/kuber
newTag: f95dd2b-3176
- 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

0 comments on commit 7d1490a

Please sign in to comment.