From d8a0b223dfbe86e88866174082028701b23ab2d4 Mon Sep 17 00:00:00 2001 From: Max Resnick Date: Sat, 17 Sep 2022 08:02:23 -0700 Subject: updated manifests so they actually work --- grumpy/static-files/blog/ingress.yaml | 8 ++++++++ grumpy/static-files/blog/kustomization.yaml | 23 +++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 grumpy/static-files/blog/ingress.yaml create mode 100644 grumpy/static-files/blog/kustomization.yaml (limited to 'grumpy/static-files/blog') diff --git a/grumpy/static-files/blog/ingress.yaml b/grumpy/static-files/blog/ingress.yaml new file mode 100644 index 0000000..fc60d92 --- /dev/null +++ b/grumpy/static-files/blog/ingress.yaml @@ -0,0 +1,8 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: static-files +spec: + rules: + - $patch: merge + host: stuff diff --git a/grumpy/static-files/blog/kustomization.yaml b/grumpy/static-files/blog/kustomization.yaml new file mode 100644 index 0000000..44f580e --- /dev/null +++ b/grumpy/static-files/blog/kustomization.yaml @@ -0,0 +1,23 @@ +resources: + - ../base +namePrefix: blog- +commonLabels: + app.kubernetes.io/name: blog +patches: + - target: + kind: Ingress + name: static-files + patch: |- + - op: replace + path: /spec/rules/0/host + value: ofmax.li + - op: replace + path: /spec/tls/0/hosts/0 + value: ofmax.li + - op: add + path: /spec/tls/0/hosts/- + value: www.ofmax.li +images: +- name: web + newName: registry.gitlab.com/grumps/ofmax/prod + newTag: v0.0.1 -- cgit v1.2.3