mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-10 17:39:43 +00:00
ingress-nginx
This commit is contained in:
parent
9dce1f49f3
commit
f24b8dd1d7
2 changed files with 41 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
| [Apps](https://argocd.ioot.xyz/applications/argocd/apps) | Main app of apps ||
|
| [Apps](https://argocd.ioot.xyz/applications/argocd/apps) | Main app of apps ||
|
||||||
| [ArgoCD](https://argocd.ioot.xyz/applications/argocd/argocd) | ||
|
| [ArgoCD](https://argocd.ioot.xyz/applications/argocd/argocd) | ||
|
||||||
| [Cilium](https://argocd.ioot.xyz/applications/argocd/cilium) | ||
|
| [Cilium](https://argocd.ioot.xyz/applications/argocd/cilium) | ||
|
||||||
|
| [Nginx Ingress Controller](https://argocd.ioot.xyz/applications/argocd/ingress-nginx) | ||
|
||||||
| [Cert Manager](https://argocd.ioot.xyz/applications/argocd/cert-manager) | ||
|
| [Cert Manager](https://argocd.ioot.xyz/applications/argocd/cert-manager) | ||
|
||||||
|
|
||||||
## Cluster initialization
|
## Cluster initialization
|
||||||
|
|
|
||||||
40
state/gullfaxi/system/ingress-nginx/application.yaml
Normal file
40
state/gullfaxi/system/ingress-nginx/application.yaml
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: ingress-nginx
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: ingress-nginx
|
||||||
|
project: system
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
source:
|
||||||
|
repoURL: https://kubernetes.github.io/ingress-nginx
|
||||||
|
chart: ingress-nginx
|
||||||
|
targetRevision: 4.7.1
|
||||||
|
helm:
|
||||||
|
values: |
|
||||||
|
# https://github.com/kubernetes/ingress-nginx/blob/main/charts/ingress-nginx/values.yaml
|
||||||
|
ingress-nginx:
|
||||||
|
controller:
|
||||||
|
metrics:
|
||||||
|
enabled: true
|
||||||
|
service:
|
||||||
|
omitClusterIP: true
|
||||||
|
service:
|
||||||
|
# preserve source IPs
|
||||||
|
externalTrafficPolicy: Local
|
||||||
|
omitClusterIP: true
|
||||||
|
type: NodePort
|
||||||
|
nodePorts:
|
||||||
|
# port forwarding on router
|
||||||
|
http: 30080
|
||||||
|
https: 30443
|
||||||
|
defaultBackend:
|
||||||
|
service:
|
||||||
|
omitClusterIP: true
|
||||||
Loading…
Reference in a new issue