-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscenario.txt
58 lines (56 loc) · 2.08 KB
/
scenario.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
This is my scenario:
- Ubuntu-24.04 in WSL
- Bind9 as DNS server
- k3d kubernetes cluster
- I use kustomize for resource deployment
- k8s.local domain in bind9 managed by external-dns
- current resources
k8s
├─infra
│ ├─base
│ │ ├─cert-manager
│ │ │ ├─kustomization.yaml
│ │ │ └─namespace.yaml
│ │ ├─external-dns
│ │ │ ├─clusterrole.yaml
│ │ │ ├─clusterrolebinding.yaml
│ │ │ ├─deployment.yaml
│ │ │ ├─kustomization.yaml
│ │ │ ├─namespace.yaml
│ │ │ └─serviceaccount.yaml
│ │ ├─mysql
│ │ │ ├─conf.d
│ │ │ │ └── cdc.cnf
│ │ │ ├─initdb.d
│ │ │ │ └── debezium_setup.sql
│ │ │ ├─deployment.yaml
│ │ │ ├─kustomization.yaml
│ │ │ ├─namespace.yaml
│ │ │ ├─persistentvolumeclaim.yaml
│ │ │ └─service.yaml
│ └─overlays
│ ├─local
│ │ ├─cert-manager
│ │ │ ├─certificate.yaml
│ │ │ ├─issuer.yaml
│ │ │ └─kustomization.yaml
│ │ ├─external-dns
│ │ │ ├─deployment-patch.yaml
│ │ │ └─kustomization.yaml
│ │ ├─mysql
│ │ │ ├─deployment-patch.yaml
│ │ │ ├─kustomization.yaml
│ │ │ └─service-patch.yaml
│ │ └─kustomization.yaml
│ ├─production
│ │ ├─external-dns
│ │ │ ├─deployment-patch.yaml
│ │ │ └─kustomization.yaml
│ │ └─kustomization.yaml
│ └─stage
│ ├─external-dns
│ │ ├─deployment-patch.yaml
│ │ └─kustomization.yaml
│ └─kustomization.yaml
└── lakehouse
I want to deploy a images.k8s.local docker-registry accessible internal and external to the k8s cluster, avoid using 5000 port, use the same address internal and external, must be able to recover a image build from external docker inside k3d cluster