From b6869acd32332e5c5ff88ba910213a08408dc0b5 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sun, 26 Oct 2025 16:21:18 -0500 Subject: [PATCH] add stage maker test --- kustomization.yaml | 3 ++- stage-maker/kustomization.yaml | 3 +++ stage-maker/namespace.yaml | 4 ++++ stage-maker/pod.yaml | 9 +++++++++ 4 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 stage-maker/kustomization.yaml create mode 100644 stage-maker/namespace.yaml create mode 100644 stage-maker/pod.yaml diff --git a/kustomization.yaml b/kustomization.yaml index 5b110ce..57eab90 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -1,3 +1,4 @@ resources: - ./ingress-nginx.yaml - - ./ontime-operator \ No newline at end of file + - ./ontime-operator + - ./stage-maker \ No newline at end of file diff --git a/stage-maker/kustomization.yaml b/stage-maker/kustomization.yaml new file mode 100644 index 0000000..89fc68d --- /dev/null +++ b/stage-maker/kustomization.yaml @@ -0,0 +1,3 @@ +resources: + - namespace.yaml + - pod.yaml \ No newline at end of file diff --git a/stage-maker/namespace.yaml b/stage-maker/namespace.yaml new file mode 100644 index 0000000..3fc73c1 --- /dev/null +++ b/stage-maker/namespace.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: stage-maker \ No newline at end of file diff --git a/stage-maker/pod.yaml b/stage-maker/pod.yaml new file mode 100644 index 0000000..b7978ad --- /dev/null +++ b/stage-maker/pod.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: Pod +metadata: + name: stage-maker + namespace: stage-maker +spec: + containers: + - name: stage-maker + image: git.jwetzell/jwetzell/stage-maker:v0.0.1 \ No newline at end of file