Difference between revisions of "Spec.tls"
Jump to navigation
Jump to search
Line 33: | Line 33: | ||
[[set_list]] | [[set_list]] | ||
[[Data Source: helm template]] | [[Data Source: helm template]] | ||
+ | [[OrderFailed]] | ||
enterpriseGateway.ingress.tls | list | `[{"hosts":["gateway.gem.example.com"],"secretName":"gem-gateway-tls"}]` | TLS configuration for the gateway ingress | | enterpriseGateway.ingress.tls | list | `[{"hosts":["gateway.gem.example.com"],"secretName":"gem-gateway-tls"}]` | TLS configuration for the gateway ingress | |
Revision as of 13:10, 14 February 2024
tls: - hosts: - ingress-demo.example.com secretName: ingress-demo-tls
tls: - secretName: chart-example-tls hosts: - chart-example.local
Contents
Ingress
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: kuard annotations: cert-manager.io/issuer: "letsencrypt-staging" spec: ingressClassName: nginx tls: - hosts: - example.example.com secretName: quickstart-example-tls rules: - host: example.example.com http: paths: - path: / pathType: Prefix backend: service: name: kuard port: number: 80
apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: annotations: kubernetes.io/ingress.class: nginx name: example namespace: foo spec: rules: - host: www.example.com http: paths: - backend: serviceName: exampleService servicePort: 80 path: / # This section is only required if TLS is to be enabled for the Ingress tls: - hosts: - www.example.com secretName: example-tls
Official example
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: tls-example-ingress spec: tls: - hosts: - https-example.foo.com secretName: testsecret-tls rules: - host: https-example.foo.com http: paths: - path: / pathType: Prefix backend: service: name: service1 port: number: 80
Related
elasticsearch values.yaml helm_release ingress.tls Inappropriate value for attribute "value": element 0: string required. IngressTLS kind: Ingress spec.tls json: cannot unmarshal string into Go struct field IngressSpec.spec.tls of type v1.IngressTLS Error: cannot patch set_list Data Source: helm template OrderFailed enterpriseGateway.ingress.tls | list | `[{"hosts":["gateway.gem.example.com"],"secretName":"gem-gateway-tls"}]` | TLS configuration for the gateway ingress |
See also
Advertising: