refactor: move files to a kind-directory so Renovate will find them

This commit is contained in:
2024-12-28 18:07:44 +01:00
parent dc3af1b710
commit e62508cfbd
9 changed files with 11 additions and 9 deletions
View File
+1 -1
View File
@@ -25,7 +25,7 @@ spec:
app: mysql
spec:
containers:
- image: jamielsharief/mysql
- image: mysql:8.4.3@sha256:106d5197fd8e4892980469ad42eb20f7a336bd81509aae4ee175d852f5cc4565
name: mysql
env:
- name: MYSQL_ROOT_PASSWORD
+1 -1
View File
@@ -49,7 +49,7 @@ spec:
spec:
containers:
- name: postgres
image: postgres:16-alpine
image: postgres:17.2-alpine@sha256:d37d2c160d34430877c802e5adc22824a2ad453499db9bab1a2ceb2be6c1a46f
args:
- -c
- shared_buffers=384MB
+7 -5
View File
@@ -69,7 +69,7 @@ spec:
value: '"8GiB"'
- name: RABBITMQ_CONFIG_FILES
value: /etc/rabbitmq/conf.d
image: rabbitmq:management
image: rabbitmq:4.0.5-management@sha256:4a2b95d53111fe589fb44b5152ff87253c63eb227eee21f39494f64d9d96c0b2
imagePullPolicy: Always
livenessProbe:
exec:
@@ -96,10 +96,12 @@ spec:
name: stats
protocol: TCP
readinessProbe:
exec:
command:
- rabbitmqctl
- status
httpGet:
port: 15672
path: /api/aliveness-test/%2F
httpHeaders:
- name: "Authorization"
value: "Basic dXNlcjpwYXNzd29yZA=="
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 5
+2 -2
View File
@@ -2,7 +2,7 @@
set -euo pipefail
kind create cluster --config kind.yaml --wait 10m
kind create cluster --config kind/kind.yaml --wait 10m
kubectl create secret docker-registry gitlab \
--docker-server=registry.gitlab.com \
@@ -14,7 +14,7 @@ kubectl patch serviceaccount default -p '{"imagePullSecrets": [{"name": "gitlab"
kustomized="$(mktemp --suffix .unboundkind.yaml --tmpdir=/tmp/)"
kubectl kustomize --enable-helm . > "${kustomized}"
kubectl kustomize --enable-helm ./kind > "${kustomized}"
kubectl apply -f "${kustomized}" || true
kubectl wait --for=condition=Ready pods --all -n cert-manager --timeout=5m
kubectl wait --for=condition=Ready pods --all -n external-secrets --timeout=5m