refactor: move files to a kind-directory so Renovate will find them
This commit is contained in:
@@ -25,7 +25,7 @@ spec:
|
|||||||
app: mysql
|
app: mysql
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: jamielsharief/mysql
|
- image: mysql:8.4.3@sha256:106d5197fd8e4892980469ad42eb20f7a336bd81509aae4ee175d852f5cc4565
|
||||||
name: mysql
|
name: mysql
|
||||||
env:
|
env:
|
||||||
- name: MYSQL_ROOT_PASSWORD
|
- name: MYSQL_ROOT_PASSWORD
|
||||||
@@ -49,7 +49,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: postgres
|
- name: postgres
|
||||||
image: postgres:16-alpine
|
image: postgres:17.2-alpine@sha256:d37d2c160d34430877c802e5adc22824a2ad453499db9bab1a2ceb2be6c1a46f
|
||||||
args:
|
args:
|
||||||
- -c
|
- -c
|
||||||
- shared_buffers=384MB
|
- shared_buffers=384MB
|
||||||
@@ -69,7 +69,7 @@ spec:
|
|||||||
value: '"8GiB"'
|
value: '"8GiB"'
|
||||||
- name: RABBITMQ_CONFIG_FILES
|
- name: RABBITMQ_CONFIG_FILES
|
||||||
value: /etc/rabbitmq/conf.d
|
value: /etc/rabbitmq/conf.d
|
||||||
image: rabbitmq:management
|
image: rabbitmq:4.0.5-management@sha256:4a2b95d53111fe589fb44b5152ff87253c63eb227eee21f39494f64d9d96c0b2
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
exec:
|
exec:
|
||||||
@@ -96,10 +96,12 @@ spec:
|
|||||||
name: stats
|
name: stats
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
exec:
|
httpGet:
|
||||||
command:
|
port: 15672
|
||||||
- rabbitmqctl
|
path: /api/aliveness-test/%2F
|
||||||
- status
|
httpHeaders:
|
||||||
|
- name: "Authorization"
|
||||||
|
value: "Basic dXNlcjpwYXNzd29yZA=="
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 5
|
periodSeconds: 5
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -euo pipefail
|
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 \
|
kubectl create secret docker-registry gitlab \
|
||||||
--docker-server=registry.gitlab.com \
|
--docker-server=registry.gitlab.com \
|
||||||
@@ -14,7 +14,7 @@ kubectl patch serviceaccount default -p '{"imagePullSecrets": [{"name": "gitlab"
|
|||||||
|
|
||||||
kustomized="$(mktemp --suffix .unboundkind.yaml --tmpdir=/tmp/)"
|
kustomized="$(mktemp --suffix .unboundkind.yaml --tmpdir=/tmp/)"
|
||||||
|
|
||||||
kubectl kustomize --enable-helm . > "${kustomized}"
|
kubectl kustomize --enable-helm ./kind > "${kustomized}"
|
||||||
kubectl apply -f "${kustomized}" || true
|
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 cert-manager --timeout=5m
|
||||||
kubectl wait --for=condition=Ready pods --all -n external-secrets --timeout=5m
|
kubectl wait --for=condition=Ready pods --all -n external-secrets --timeout=5m
|
||||||
|
|||||||
Reference in New Issue
Block a user