Skip to content

Commit

Permalink
Merge pull request #1965 from GiganticMinecraft/add-argo-wf-proxy-ser…
Browse files Browse the repository at this point in the history
…vice

feat: argo-wf-proxy 用の Service を定義する
  • Loading branch information
outductor authored May 15, 2024
2 parents a1b62e3 + 2f4e9da commit d44e7ee
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# 外部から Argo Workflows を発火するためには Cloudflared を使えば機能的には問題がないが、
# 任意のクライアントから GET を受け付けると面倒なので、POST だけに限定するためのリバースプロキシを挟む。
apiVersion: v1
kind: Service
metadata:
name: argo-wf-proxy
namespace: argocd
spec:
type: ClusterIP
ports:
- name: http
port: 80
protocol: TCP
targetPort: 80
selector:
app: argo-wf-proxy
---
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down

0 comments on commit d44e7ee

Please sign in to comment.