From 9b1ace756fcfc0eba536fbf8b4944d80f3b4d5fd Mon Sep 17 00:00:00 2001 From: William P Date: Mon, 24 Feb 2025 10:45:36 -0500 Subject: [PATCH] test argo build --- .../guestbook/guestbook-ui-deployment.yaml | 20 +++++++++++++++++++ system-apps/guestbook/guestbook-ui-svc.yaml | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 system-apps/guestbook/guestbook-ui-deployment.yaml create mode 100644 system-apps/guestbook/guestbook-ui-svc.yaml diff --git a/system-apps/guestbook/guestbook-ui-deployment.yaml b/system-apps/guestbook/guestbook-ui-deployment.yaml new file mode 100644 index 0000000..ce9cff4 --- /dev/null +++ b/system-apps/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 \ No newline at end of file diff --git a/system-apps/guestbook/guestbook-ui-svc.yaml b/system-apps/guestbook/guestbook-ui-svc.yaml new file mode 100644 index 0000000..8807bcf --- /dev/null +++ b/system-apps/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 \ No newline at end of file