You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
817 B
41 lines
817 B
# Namespace onde a aplicação será instalada
|
|
namespace: hello-world
|
|
|
|
# Configurações do Deployment
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: nginxdemos/hello
|
|
tag: plain-text
|
|
pullPolicy: IfNotPresent
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64Mi
|
|
limits:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
# Configurações do Service
|
|
service:
|
|
port: 80
|
|
targetPort: 80
|
|
|
|
# Configurações do Gateway API
|
|
gateway:
|
|
# Nome do Gateway criado pelo _traefik.tpl
|
|
name: internal
|
|
# Namespace onde o Gateway está instalado
|
|
namespace: traefik-internal
|
|
# Listener a usar: http (porta 80) ou https (porta 443)
|
|
listener: http
|
|
|
|
# Rota HTTP
|
|
route:
|
|
# Deixar vazio para aceitar qualquer host (acesso por IP)
|
|
# Preencher para rotear por hostname: hello.interlegis.leg.br
|
|
hostname: ""
|
|
# Prefixo de path
|
|
path: /
|
|
|