|
| 1 | +--- |
| 2 | +# Use userspace wireguard implementation, useful on systems without native wireguard support. Set to true/false |
| 3 | +userspace: "false" |
| 4 | +# Defguard GRPC URL, e.g.: defguard-grpc.mycompany.com |
| 5 | +grpcUrl: "" |
| 6 | +# Token from Defguard app to secure gRPC connection, available on network page. |
| 7 | +# It is not recommended to use this. Create a secret yourself and use existingTokenSecret instead |
| 8 | +token: "" |
| 9 | +# Secret to get the token from |
| 10 | +existingTokenSecret: "" |
| 11 | +# Key to extract the token from in existingTokenSecret |
| 12 | +existingTokenSecretKey: "" |
| 13 | +# Defines how often (in seconds) should interface statistics be sent to Defguard server |
| 14 | +statsPeriod: 30 |
| 15 | +# rust log level, default is debug |
| 16 | +logLevel: "debug" |
| 17 | +# defguard-gateway full name override |
| 18 | +fullnameOverride: "" |
| 19 | +# defguard-gateway name override |
| 20 | +nameOverride: "" |
| 21 | +# defguard-gateway container image configuration |
| 22 | +image: |
| 23 | + pullPolicy: IfNotPresent |
| 24 | + repository: ghcr.io/defguard/gateway |
| 25 | + tag: "" # overrides .Chart.AppVersion |
| 26 | +# defguard-gateway container image pull secrets |
| 27 | +imagePullSecrets: [] |
| 28 | +# defguard-gateway container ingress configuration |
| 29 | +ingress: |
| 30 | + grpc: |
| 31 | + annotations: {} |
| 32 | + className: "" |
| 33 | + enabled: true |
| 34 | + host: defguard-gateway-grpc.local |
| 35 | + tls: false |
| 36 | +# defguard-gateway pod affinity configuration |
| 37 | +affinity: {} |
| 38 | +# defguard-gateway node selector configuration |
| 39 | +nodeSelector: {} |
| 40 | +# defguard-gateway pod tolerations |
| 41 | +tolerations: [] |
| 42 | +# defguard-gateway pod annotations |
| 43 | +podAnnotations: {} |
| 44 | +# defguard-gateway pod labels |
| 45 | +podLabels: {} |
| 46 | +# defguard-gateway pod replica count |
| 47 | +replicaCount: 1 |
| 48 | +# defguard-gateway pod resources |
| 49 | +resources: {} |
| 50 | +# defguard-gateway pod security context |
| 51 | +podSecurityContext: {} |
| 52 | +# defguard-gateway container security context |
| 53 | +securityContext: {} |
| 54 | +# defguard-gateway pod additional ENV from configmap |
| 55 | +additionalEnvFromConfigMap: "" |
| 56 | +# defguard-gateway service configuration |
| 57 | +service: |
| 58 | + ports: |
| 59 | + grpc: 50051 |
| 60 | + type: ClusterIP |
| 61 | +# defguard-gateway serviceaccount configuration |
| 62 | +serviceAccount: |
| 63 | + annotations: {} |
| 64 | + create: true |
0 commit comments