From b1dacc2c4af5090c2fe0ae882545ff7b68d5e909 Mon Sep 17 00:00:00 2001 From: patrickhargett Date: Tue, 11 Apr 2023 14:19:51 -0400 Subject: [PATCH] Add files via upload --- .../guestbook/guestbook-ui-deployment.yaml | 20 +++++++++++++++++++ .../guestbook/guestbook-ui-svc.yaml | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 support_bundle/guestbook/guestbook-ui-deployment.yaml create mode 100644 support_bundle/guestbook/guestbook-ui-svc.yaml diff --git a/support_bundle/guestbook/guestbook-ui-deployment.yaml b/support_bundle/guestbook/guestbook-ui-deployment.yaml new file mode 100644 index 00000000..8a0975e3 --- /dev/null +++ b/support_bundle/guestbook/guestbook-ui-deployment.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: guestbook-ui +spec: + replicas: 1 + revisionHistoryLimit: 3 + selector: + matchLabels: + app: guestbook-ui + template: + metadata: + labels: + app: guestbook-ui + spec: + containers: + - image: gcr.io/heptio-images/ks-guestbook-demo:0.2 + name: guestbook-ui + ports: + - containerPort: 80 diff --git a/support_bundle/guestbook/guestbook-ui-svc.yaml b/support_bundle/guestbook/guestbook-ui-svc.yaml new file mode 100644 index 00000000..e8a4a27f --- /dev/null +++ b/support_bundle/guestbook/guestbook-ui-svc.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Service +metadata: + name: guestbook-ui +spec: + ports: + - port: 80 + targetPort: 80 + selector: + app: guestbook-ui