-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update etcd docker tag to v11 #2944
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
Open
usa-reddragon-renovate-ce
wants to merge
1
commit into
main
Choose a base branch
from
renovate/etcd-11.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Kustomization Diff
Click to expand--- services Kustomization: flux-system/services HelmRelease: split-dns/etcd
+++ services Kustomization: flux-system/services HelmRelease: split-dns/etcd
@@ -12,13 +12,13 @@
spec:
chart: etcd
sourceRef:
kind: HelmRepository
name: bitnami
namespace: flux-system
- version: 10.7.3
+ version: 11.2.4
driftDetection:
mode: enabled
interval: 1m0s
releaseName: etcd
values:
auth: |
HelmRelease Diff
Click to expand--- HelmRelease: split-dns/etcd StatefulSet: split-dns/etcd
+++ HelmRelease: split-dns/etcd StatefulSet: split-dns/etcd
@@ -106,14 +106,12 @@
- name: ETCD_INITIAL_ADVERTISE_PEER_URLS
value: http://$(MY_POD_NAME).etcd-headless.split-dns.svc.cluster.local:2380
- name: ETCD_LISTEN_PEER_URLS
value: http://0.0.0.0:2380
- name: ETCD_INITIAL_CLUSTER_TOKEN
value: etcd-cluster-k8s
- - name: ETCD_INITIAL_CLUSTER_STATE
- value: new
- name: ETCD_INITIAL_CLUSTER
value: etcd-0=http://etcd-0.etcd-headless.split-dns.svc.cluster.local:2380,etcd-1=http://etcd-1.etcd-headless.split-dns.svc.cluster.local:2380,etcd-2=http://etcd-2.etcd-headless.split-dns.svc.cluster.local:2380
- name: ETCD_CLUSTER_DOMAIN
value: etcd-headless.split-dns.svc.cluster.local
envFrom: null
ports:
@@ -139,17 +137,12 @@
- /opt/bitnami/scripts/etcd/healthcheck.sh
initialDelaySeconds: 60
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
- lifecycle:
- preStop:
- exec:
- command:
- - /opt/bitnami/scripts/etcd/prestop.sh
resources:
limits:
memory: 128Mi
requests:
cpu: 50m
memory: 128Mi
--- HelmRelease: split-dns/etcd Job: split-dns/etcd-pre-upgrade
+++ HelmRelease: split-dns/etcd Job: split-dns/etcd-pre-upgrade
@@ -0,0 +1,98 @@
+---
+apiVersion: batch/v1
+kind: Job
+metadata:
+ name: etcd-pre-upgrade
+ namespace: split-dns
+ labels:
+ app.kubernetes.io/instance: etcd
+ app.kubernetes.io/managed-by: Helm
+ app.kubernetes.io/name: etcd
+ app.kubernetes.io/component: etcd-pre-upgrade-job
+ annotations:
+ helm.sh/hook: pre-upgrade
+ helm.sh/hook-delete-policy: before-hook-creation
+spec:
+ template:
+ metadata:
+ labels:
+ app.kubernetes.io/instance: etcd
+ app.kubernetes.io/managed-by: Helm
+ app.kubernetes.io/name: etcd
+ app.kubernetes.io/component: etcd-pre-upgrade-job
+ annotations: null
+ spec:
+ imagePullSecrets:
+ - name: registry-docker-hub
+ automountServiceAccountToken: false
+ affinity:
+ podAffinity: null
+ podAntiAffinity:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ - podAffinityTerm:
+ labelSelector:
+ matchLabels:
+ app.kubernetes.io/instance: etcd
+ app.kubernetes.io/name: etcd
+ app.kubernetes.io/component: etcd-pre-upgrade-job
+ topologyKey: kubernetes.io/hostname
+ weight: 1
+ nodeAffinity: null
+ securityContext:
+ fsGroup: 1001
+ fsGroupChangePolicy: Always
+ supplementalGroups: []
+ sysctls: []
+ restartPolicy: Never
+ containers:
+ - name: pre-upgrade-job
+ image: docker.io/bitnami/etcd:3.5.21-debian-12-r3
+ imagePullPolicy: IfNotPresent
+ securityContext:
+ allowPrivilegeEscalation: false
+ capabilities:
+ add: []
+ drop:
+ - ALL
+ privileged: false
+ readOnlyRootFilesystem: true
+ runAsGroup: 1001
+ runAsNonRoot: true
+ runAsUser: 1001
+ seLinuxOptions: {}
+ seccompProfile:
+ type: RuntimeDefault
+ command:
+ - /opt/bitnami/scripts/etcd/entrypoint.sh
+ args:
+ - /opt/bitnami/scripts/etcd/preupgrade.sh
+ env:
+ - name: BITNAMI_DEBUG
+ value: 'false'
+ - name: ETCD_ON_K8S
+ value: 'yes'
+ - name: ETCD_DATA_DIR
+ value: /bitnami/etcd/data
+ - name: ETCD_INITIAL_CLUSTER
+ value: etcd-0=http://etcd-0.etcd-headless.split-dns.svc.cluster.local:2379,etcd-1=http://etcd-1.etcd-headless.split-dns.svc.cluster.local:2379,etcd-2=http://etcd-2.etcd-headless.split-dns.svc.cluster.local:2379
+ envFrom: null
+ resources:
+ limits:
+ cpu: 375m
+ ephemeral-storage: 2Gi
+ memory: 384Mi
+ requests:
+ cpu: 250m
+ ephemeral-storage: 50Mi
+ memory: 256Mi
+ volumeMounts:
+ - name: empty-dir
+ mountPath: /opt/bitnami/etcd/conf/
+ subPath: app-conf-dir
+ - name: empty-dir
+ mountPath: /tmp
+ subPath: tmp-dir
+ volumes:
+ - name: empty-dir
+ emptyDir: {}
+ |
fb0eb31
to
fca26f4
Compare
286f3d7
to
4f16ff2
Compare
33b1f6b
to
eb63d09
Compare
8ebf8ee
to
c57dd31
Compare
c57dd31
to
747f8dd
Compare
Signed-off-by: usa-reddragon-renovate-ce[bot] <156608365+usa-reddragon-renovate-ce[bot]@users.noreply.github.com>
747f8dd
to
3dac6e1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
10.7.3
->11.2.4
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
bitnami/charts (etcd)
v11.2.4
v11.2.3
v11.2.2
v11.2.1
v11.1.6
v11.1.5
v11.1.4
v11.1.3
v11.1.2
v11.1.1
v11.1.0
v11.0.8
v11.0.7
v11.0.6
v11.0.5
v11.0.4
v11.0.3
v11.0.2
v11.0.1
v11.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.