-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(helm)!: Update chart mariadb-galera to 14.1.0 #2835
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/mariadb-galera-14.x
base: master
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.
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
Path: @@ -1,4 +1,48 @@
---
+# Source: mariadb-galera/templates/networkpolicy.yaml
+kind: NetworkPolicy
+apiVersion: networking.k8s.io/v1
+metadata:
+ name: mariadb-galera
+ namespace: "default"
+ labels:
+ app.kubernetes.io/instance: mariadb-galera
+ app.kubernetes.io/managed-by: Helm
+ app.kubernetes.io/name: mariadb-galera
+spec:
+ podSelector:
+ matchLabels:
+ app.kubernetes.io/instance: mariadb-galera
+ app.kubernetes.io/name: mariadb-galera
+ policyTypes:
+ - Ingress
+ - Egress
+ egress:
+ - {}
+ ingress:
+ - ports:
+ - port: 3306
+ - port: 4567
+ - port: 4568
+ - port: 4444
+---
+# Source: mariadb-galera/templates/pdb.yaml
+apiVersion: policy/v1
+kind: PodDisruptionBudget
+metadata:
+ name: mariadb-galera
+ namespace: "default"
+ labels:
+ app.kubernetes.io/instance: mariadb-galera
+ app.kubernetes.io/managed-by: Helm
+ app.kubernetes.io/name: mariadb-galera
+spec:
+ maxUnavailable: 1
+ selector:
+ matchLabels:
+ app.kubernetes.io/instance: mariadb-galera
+ app.kubernetes.io/name: mariadb-galera
+---
# Source: mariadb-galera/templates/secrets.yaml
apiVersion: v1
kind: Secret
@@ -11,9 +55,9 @@
app.kubernetes.io/name: mariadb-galera
type: Opaque
data:
- mariadb-root-password: "RGJxRDV1V043dg=="
- mariadb-password: "TkhvNnFReUJzOQ=="
- mariadb-galera-mariabackup-password: "ZkQxaU5yVmh6Rw=="
+ mariadb-root-password: "VUV6cmlhQkd5OQ=="
+ mariadb-password: "Qkg5VjQ4aFpPaw=="
+ mariadb-galera-mariabackup-password: "cnZXdkpzVFpHQQ=="
---
# Source: mariadb-galera/templates/configmap.yaml
apiVersion: v1
@@ -200,12 +244,13 @@
template:
metadata:
annotations:
- checksum/config: ad6aad9174d3bd87a8847fb467e52374cf6dd6ea38960e7844768126270f5ce8
+ checksum/config: ea097c0f7dfa9f9141056365bfccff5f5bd5a2cbad26bb2a628bc00eb2394a96
labels:
app.kubernetes.io/instance: mariadb-galera
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: mariadb-galera
spec:
+ automountServiceAccountToken: false
serviceAccountName: default
affinity:
podAffinity:
@@ -221,14 +266,67 @@
kubernetes.io/arch: amd64
securityContext:
fsGroup: 1001
- runAsUser: 1001
+ fsGroupChangePolicy: Always
+ supplementalGroups: []
+ sysctls: []
+ initContainers:
+ - name: preserve-logs-symlinks
+ image: public.ecr.aws/bitnami/mariadb-galera:11.0.4
+ imagePullPolicy: "IfNotPresent"
+ securityContext:
+ allowPrivilegeEscalation: false
+ capabilities:
+ drop:
+ - ALL
+ privileged: false
+ readOnlyRootFilesystem: true
+ runAsGroup: 1001
+ runAsNonRoot: true
+ runAsUser: 1001
+ seLinuxOptions: {}
+ seccompProfile:
+ type: RuntimeDefault
+ resources:
+ limits:
+ cpu: 375m
+ ephemeral-storage: 2Gi
+ memory: 384Mi
+ requests:
+ cpu: 250m
+ ephemeral-storage: 50Mi
+ memory: 256Mi
+ command:
+ - /bin/bash
+ args:
+ - -ec
+ - |
+ #!/bin/bash
+
+ . /opt/bitnami/scripts/libfs.sh
+ # We copy the logs folder because it has symlinks to stdout and stderr
+ if ! is_dir_empty /opt/bitnami/mariadb/logs; then
+ cp -r /opt/bitnami/mariadb/logs /emptydir/app-logs-dir
+ fi
+ volumeMounts:
+ - name: empty-dir
+ mountPath: /emptydir
containers:
- name: "mariadb-galera"
image: public.ecr.aws/bitnami/mariadb-galera:11.0.4
imagePullPolicy: "IfNotPresent"
securityContext:
+ allowPrivilegeEscalation: false
+ capabilities:
+ drop:
+ - ALL
+ privileged: false
+ readOnlyRootFilesystem: true
+ runAsGroup: 1001
runAsNonRoot: true
runAsUser: 1001
+ seLinuxOptions: {}
+ seccompProfile:
+ type: RuntimeDefault
command:
- bash
- -ec
@@ -311,8 +409,14 @@
successThreshold: 1
failureThreshold: 3
resources:
- limits: {}
- requests: {}
+ limits:
+ cpu: 375m
+ ephemeral-storage: 2Gi
+ memory: 384Mi
+ requests:
+ cpu: 250m
+ ephemeral-storage: 50Mi
+ memory: 256Mi
volumeMounts:
- name: previous-boot
mountPath: /opt/bitnami/mariadb/.bootstrap
@@ -321,12 +425,26 @@
- name: mariadb-galera-config
mountPath: /bitnami/conf/my.cnf
subPath: my.cnf
+ - name: empty-dir
+ mountPath: /tmp
+ subPath: tmp-dir
+ - name: empty-dir
+ mountPath: /opt/bitnami/mariadb/conf
+ subPath: app-conf-dir
+ - name: empty-dir
+ mountPath: /opt/bitnami/mariadb/tmp
+ subPath: app-tmp-dir
+ - name: empty-dir
+ mountPath: /opt/bitnami/mariadb/logs
+ subPath: app-logs-dir
volumes:
- name: previous-boot
emptyDir: {}
- name: mariadb-galera-config
configMap:
name: mariadb-galera-configuration
+ - name: empty-dir
+ emptyDir: {}
volumeClaimTemplates:
- metadata:
name: data |
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
July 18, 2024 12:40
64edeb7
to
9608eb0
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.0
feat(helm)!: Update chart mariadb-galera to 14.0.1
Jul 18, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
July 19, 2024 12:11
9608eb0
to
c5719cc
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.1
feat(helm)!: Update chart mariadb-galera to 14.0.2
Jul 19, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
July 23, 2024 17:05
c5719cc
to
9aeeab0
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.2
feat(helm)!: Update chart mariadb-galera to 14.0.3
Jul 23, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
July 24, 2024 11:04
9aeeab0
to
4576cec
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.3
feat(helm)!: Update chart mariadb-galera to 14.0.4
Jul 24, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
July 25, 2024 09:25
4576cec
to
4a9918b
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.4
feat(helm)!: Update chart mariadb-galera to 14.0.5
Jul 25, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
August 1, 2024 13:53
4a9918b
to
69dea92
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.5
feat(helm)!: Update chart mariadb-galera to 14.0.6
Aug 1, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
August 5, 2024 13:47
69dea92
to
74c6812
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.6
feat(helm)!: Update chart mariadb-galera to 14.0.7
Aug 5, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
August 5, 2024 16:11
74c6812
to
30c7fa0
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.7
feat(helm)!: Update chart mariadb-galera to 14.0.8
Aug 5, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
August 14, 2024 15:23
30c7fa0
to
b0d323f
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.8
feat(helm)!: Update chart mariadb-galera to 14.0.9
Aug 14, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
September 23, 2024 15:30
b0d323f
to
dcb946b
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.9
feat(helm)!: Update chart mariadb-galera to 14.0.10
Sep 23, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
November 2, 2024 16:23
dcb946b
to
cb23bb3
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.10
feat(helm)!: Update chart mariadb-galera to 14.0.11
Nov 2, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
November 4, 2024 22:36
cb23bb3
to
6abc83c
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.11
feat(helm)!: Update chart mariadb-galera to 14.0.12
Nov 4, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
December 6, 2024 05:31
12c0ab8
to
e44d48d
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.12
feat(helm)!: Update chart mariadb-galera to 14.0.14
Dec 6, 2024
renovate
bot
force-pushed
the
renovate/mariadb-galera-14.x
branch
from
December 11, 2024 04:00
e44d48d
to
1859c43
Compare
renovate
bot
changed the title
feat(helm)!: Update chart mariadb-galera to 14.0.14
feat(helm)!: Update chart mariadb-galera to 14.1.0
Dec 11, 2024
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.0.0
->14.1.0
Release Notes
bitnami/charts (mariadb-galera)
v14.1.0
v14.0.14
v14.0.13
v14.0.12
v14.0.11
v14.0.10
v14.0.9
v14.0.8
v14.0.7
v14.0.6
v14.0.5
v14.0.4
v14.0.3
v14.0.2
v14.0.1
v14.0.0
v13.2.7
v13.2.6
v13.2.5
v13.2.4
v13.2.3
v13.2.2
v13.2.1
v13.2.0
v13.1.0
v13.0.4
v13.0.3
v13.0.2
v13.0.1
v13.0.0
v12.0.2
v12.0.1
v12.0.0
v11.7.0
v11.6.2
v11.6.1
v11.6.0
v11.4.0
v11.3.2
v11.3.1
v11.3.0
v11.2.3
v11.2.2
v11.2.0
v11.1.1
v11.1.0
v11.0.2
v11.0.1
v11.0.0
v10.1.3
v10.1.2
v10.1.1
v10.1.0
v10.0.3
v10.0.2
v10.0.1
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 was generated by Mend Renovate. View the repository job log.