feat: add stub hipster

This commit is contained in:
2024-02-02 12:20:19 +01:00
parent 5381d9f75e
commit 9dcae0d0d5
27 changed files with 759 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
- op: replace
path: /spec/template/spec/containers/0/livenessProbe/httpGet/path
value: /healthz
- op: replace
path: /spec/template/spec/containers/0/readinessProbe/httpGet/path
value: /healthz
+17
View File
@@ -0,0 +1,17 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: oceanbox
patches:
- target:
version: v1
group: apps
kind: Deployment
name: hipster
path: deployment_patch.yaml
- target:
version: v1
kind: Service
name: hipster
path: service_patch.yaml
resources:
- _manifest.yaml
+7
View File
@@ -0,0 +1,7 @@
- op: add
path: /spec/ports/-
value:
name: intra
port: 8000
protocol: TCP
targetPort: 8000