devel: rename manifests/ to kustomizations/

This commit is contained in:
Jonas Juselius
2024-06-06 08:52:13 +02:00
parent e0af3046ca
commit accd4d3e4e
149 changed files with 0 additions and 0 deletions
@@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- _manifest.yaml
+1
View File
@@ -0,0 +1 @@
bitnami/redis
@@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- nodeport.yaml
- ../base
+17
View File
@@ -0,0 +1,17 @@
apiVersion: v1
kind: Service
metadata:
name: prod-redis-nodeport
spec:
externalTrafficPolicy: Cluster
ports:
- name: redis
nodePort: 30379
port: 6379
protocol: TCP
targetPort: 6379
selector:
app.kubernetes.io/instance: prod-redis
app.kubernetes.io/name: redis
sessionAffinity: None
type: NodePort
@@ -0,0 +1,3 @@
resources:
- nodeport.yaml
- ../base
@@ -0,0 +1,17 @@
apiVersion: v1
kind: Service
metadata:
name: staging-redis-nodeport
spec:
externalTrafficPolicy: Cluster
ports:
- name: redis
nodePort: 31379
port: 6379
protocol: TCP
targetPort: 6379
selector:
app.kubernetes.io/instance: staging-redis
app.kubernetes.io/name: redis
sessionAffinity: None
type: NodePort
+5
View File
@@ -0,0 +1,5 @@
replica:
replicaCount: 2
auth:
existingSecret: prod-redis
+5
View File
@@ -0,0 +1,5 @@
replica:
replicaCount: 2
auth:
existingSecret: staging-redis
+9
View File
@@ -0,0 +1,9 @@
architecture: replication
auth:
enabled: true
sentinel: true
password: ""
existingSecret: ""
existingSecretPasswordKey: ""
usePasswordFiles: false