update nginx image reference and modify nodePort values for production and test environments; remove unused UAT configmap and kustomization files

This commit is contained in:
5 changed files with 6 additions and 6 deletions

17
stages/dev/configmap.yaml Normal file
View File

@@ -0,0 +1,17 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: kargo-demo-content
data:
index.html: |-
<!DOCTYPE html>
<html>
<head>
<title>dev</title>
</head>
<body>
<h1>dev</h1>
</body>
</html>

View File

@@ -0,0 +1,15 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../base
- configmap.yaml
patches:
- target:
kind: Service
name: kargo-demo
patch: |-
- op: replace
path: /spec/ports/0/nodePort
value: 30182