diff options
Diffstat (limited to 'tools/argocd/templates/service.yaml')
-rw-r--r-- | tools/argocd/templates/service.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/argocd/templates/service.yaml b/tools/argocd/templates/service.yaml new file mode 100644 index 0000000..9a6afdf --- /dev/null +++ b/tools/argocd/templates/service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: argocd-server + namespace: argocd +spec: + type: ClusterIP + ports: + - port: 80 + targetPort: 8080 + selector: + app: argocd-server |