Argo/apps/templates/traefik.yaml

104 lines
2.3 KiB
YAML
Raw Normal View History

2022-07-02 22:58:54 +02:00
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: traefik
namespace: argo-cd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
server: https://kubernetes.default.svc
namespace: traefik
project: default
source:
chart: traefik
helm:
values: |
image:
repository: &traefikImage library/traefik
name: *traefikImage
tag: v2.8.0
pullPolicy: IfNotPresent
experimental:
http3:
enabled: true
2022-07-02 23:03:14 +02:00
plugins:
enabled: false
kubernetesGateway:
enabled: false
2022-07-02 22:58:54 +02:00
globalArguments: []
additionalArguments:
2022-11-15 09:02:23 +01:00
# - "--entryPoints.web.forwardedHeaders.trustedIPs=127.0.0.1/32"
2022-07-02 22:58:54 +02:00
- "--api.insecure=true"
envFrom:
- secretRef:
name: traefik-secrets
2022-11-15 09:30:55 +01:00
ingressClass:
enabled: true
isDefaultClass: true
providers:
kubernetesIngress:
enabled: true
2022-07-02 22:58:54 +02:00
ports:
2022-07-02 23:03:14 +02:00
traefik:
port: 9000
2022-11-15 09:14:06 +01:00
expose: true
2022-07-02 23:03:14 +02:00
exposedPort: 9000
protocol: TCP
2022-07-02 22:58:54 +02:00
web:
2022-07-02 23:03:14 +02:00
port: 8000
2022-11-15 09:24:10 +01:00
expose: false
2022-07-02 23:03:14 +02:00
exposedPort: 80
protocol: TCP
2022-07-02 22:58:54 +02:00
websecure:
2022-07-02 23:03:14 +02:00
port: 8443
2022-11-15 09:24:10 +01:00
expose: false
2022-07-02 23:03:14 +02:00
exposedPort: 443
2022-07-02 22:58:54 +02:00
protocol: TCP
http3: true
tls:
enabled: true
2022-07-03 16:07:36 +02:00
metrics:
port: 9100
expose: true
2022-11-15 09:11:36 +01:00
udp:
port: 6666
protocol: UDP
2022-11-15 09:24:10 +01:00
expose: false
2022-07-02 22:58:54 +02:00
tlsOptions:
default:
sniStrict: true
minVersion: VersionTLS12
service:
2022-07-03 16:51:08 +02:00
enabled: true
2022-11-15 09:18:09 +01:00
type: NodePort
2022-07-02 23:03:14 +02:00
annotations: {}
annotationsTCP: {}
annotationsUDP: {}
labels: {}
spec:
{}
loadBalancerSourceRanges:
[]
externalIPs:
[]
2022-07-02 22:58:54 +02:00
certResolvers: {}
repoURL: https://helm.traefik.io/traefik
targetRevision: 10.24.0
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true