first commit
This commit is contained in:
commit
c943e81b7b
14 changed files with 207 additions and 0 deletions
13
A3/overlays/dev/certificate.yaml
Normal file
13
A3/overlays/dev/certificate.yaml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: a3-dev-cert
|
||||
namespace: istio-system
|
||||
spec:
|
||||
secretName: a3-dev-cert
|
||||
issuerRef:
|
||||
name: letsencrypt-dns
|
||||
kind: ClusterIssuer
|
||||
dnsNames:
|
||||
- a3-dev.local.gwg313.xyz
|
||||
- a3-dev.gwg313.xyz
|
||||
12
A3/overlays/dev/kustomization.yaml
Normal file
12
A3/overlays/dev/kustomization.yaml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: A3-dev
|
||||
bases:
|
||||
- ../../base
|
||||
resources:
|
||||
- gateway.yaml
|
||||
- virtualservice.yaml
|
||||
- certificate.yaml
|
||||
images:
|
||||
- name: registry.gwg313.xyz/private/a3-dev
|
||||
newTag: dev-placeholder
|
||||
20
A3/overlays/dev/virtualservice.yaml
Normal file
20
A3/overlays/dev/virtualservice.yaml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
apiVersion: networking.istio.io/v1beta1
|
||||
kind: VirtualService
|
||||
metadata:
|
||||
name: A3-dev
|
||||
namespace: a3
|
||||
spec:
|
||||
hosts:
|
||||
- a3-dev.gwg313.xyz
|
||||
- a3-dev.local.gwg313.xyz
|
||||
gateways:
|
||||
- a3-dev-gateway
|
||||
http:
|
||||
- match:
|
||||
- uri:
|
||||
prefix: /
|
||||
route:
|
||||
- destination:
|
||||
host: a3-dev
|
||||
port:
|
||||
number: 80
|
||||
Loading…
Add table
Add a link
Reference in a new issue