-
-
Save shpwrck/2aeaaa06e8d4e95ea63b8c98eea69b15 to your computer and use it in GitHub Desktop.
test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Name allows overriding the release name. Generally this should not be set | |
name: "" | |
# revision declares which revision this gateway is a part of | |
revision: "1-14-4" | |
replicaCount: 1 | |
#kind: Deployment | |
rbac: | |
# If enabled, roles will be created to enable accessing certificates from Gateways. This is not needed | |
# when using http://gateway-api.org/. | |
enabled: true | |
serviceAccount: | |
# If set, a service account will be created. Otherwise, the default is used | |
create: true | |
# Annotations to add to the service account | |
annotations: {} | |
# The name of the service account to use. | |
# If not set, the release name is used | |
name: "" | |
podAnnotations: | |
prometheus.io/port: "15020" | |
prometheus.io/scrape: "true" | |
prometheus.io/path: "/stats/prometheus" | |
inject.istio.io/templates: "gateway" | |
sidecar.istio.io/inject: "true" | |
# Define the security context for the pod. | |
# If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443. | |
# On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl. | |
securityContext: ~ | |
containerSecurityContext: ~ | |
service: | |
# Type of service. Set to "None" to disable the service entirely | |
type: LoadBalancer | |
ports: | |
- name: https | |
port: 443 | |
protocol: TCP | |
targetPort: 8443 | |
- name: tls | |
port: 15443 | |
protocol: TCP | |
targetPort: 15443 | |
annotations: {} | |
loadBalancerIP: "" | |
loadBalancerSourceRanges: [] | |
externalTrafficPolicy: "" | |
externalIPs: [] | |
resources: | |
requests: | |
cpu: 100m | |
memory: 128Mi | |
limits: | |
cpu: 2000m | |
memory: 1024Mi | |
autoscaling: | |
enabled: true | |
minReplicas: 1 | |
maxReplicas: 5 | |
targetCPUUtilizationPercentage: 80 | |
# Pod environment variables | |
env: | |
ISTIO_META_ROUTER_MODE: sni-dnat | |
ISTIO_META_UNPRIVILEGED_POD: "true" | |
# Labels to apply to all resources | |
labels: | |
topology.istio.io/network: alvin | |
# Annotations to apply to all resources | |
annotations: {} | |
nodeSelector: {} | |
tolerations: [] | |
affinity: {} | |
# If specified, the gateway will act as a network gateway for the given network. | |
networkGateway: "" | |
imagePullSecrets: [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment