
- Fix a annotation warning which is depreciated - Seperate nginx and cert-manager tests to individual files Change-Id: Icccfae9b5250d946f381230d93291be707d6bc95 Signed-off-by: Thomas Sunil <sunil.thomas@windriver.com>
24 lines
457 B
YAML
24 lines
457 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
cert-manager.io/issuer: stepca-issuer
|
|
name: kuard
|
|
namespace: pvtest
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: '{{ dns_name }}'
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: kuard
|
|
port:
|
|
number: 80
|
|
path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- '{{ dns_name }}'
|
|
secretName: kuard-ingress-tls |