Skip to content

Commit

Permalink
Merge pull request #1963 from GiganticMinecraft/rename-argo-workflows…
Browse files Browse the repository at this point in the history
…-reverse-proxy

fix: argo-workflows-reverse-proxyのサービス名を短縮する
  • Loading branch information
outductor authored May 15, 2024
2 parents 2587e8b + 18087c4 commit 9c8b2d8
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: argo-workflows-reverse-proxy
# 本来は argo-workflow-reverse-proxy という名前にしたいが、
# そうすると53文字を超えてしまい、エラーが発生するのでやむを得ず短縮している。
name: argo-wf-proxy
namespace: argocd
spec:
replicas: 1
selector:
matchLabels:
app: argo-workflows-reverse-proxy
app: argo-wf-proxy
template:
metadata:
labels:
app: argo-workflows-reverse-proxy
app: argo-wf-proxy
spec:
containers:
- name: nginx
Expand All @@ -25,12 +27,12 @@ spec:
volumes:
- name: conf
configMap:
name: argo-workflows-reverse-proxy-config-map
name: argo-wf-proxy-config-map
---
apiVersion: v1
kind: ConfigMap
metadata:
name: argo-workflows-reverse-proxy-config-map
name: argo-wf-proxy-config-map
namespace: argocd
data:
proxy.conf: |
Expand Down

0 comments on commit 9c8b2d8

Please sign in to comment.