Skip to content

Commit

Permalink
Feature/git webhook ingress (#54)
Browse files Browse the repository at this point in the history
* feat: ingress for git events to argocd server

---------

Co-authored-by: GlueOps <[email protected]>
  • Loading branch information
fernandoataoldotcom and glueops-svc-account authored Jun 22, 2023
1 parent c0f85b4 commit cf89e14
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
appVersion: v0.1.0
description: This chart deploys the GlueOps Platform
name: glueops-platform
version: 0.17.0
version: 0.17.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# glueops-platform

![Version: 0.17.0](https://img.shields.io/badge/Version-0.17.0-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.17.1](https://img.shields.io/badge/Version-0.17.1-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

This chart deploys the GlueOps Platform

Expand Down
17 changes: 17 additions & 0 deletions templates/argocd-webhook-ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: webhook-argocd-server
spec:
ingressClassName: public
rules:
- host: webhook-argocd-server.{{ .Values.captain_domain }}
http:
paths:
- pathType: Exact
path: /api/webhook
backend:
service:
name: argocd-server
port:
number: 443

0 comments on commit cf89e14

Please sign in to comment.