This commit is contained in:
Kevin Harris 2019-10-30 09:59:44 -04:00
Родитель 60d847856d
Коммит 99bf0d425b
2 изменённых файлов: 23 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,13 @@
apiVersion: v1 apiVersion: v1
kind: Namespace kind: Namespace
metadata:
name: kube-system
labels:
app: kube-system
control-plane: controller-manager
---
apiVersion: v1
kind: Namespace
metadata: metadata:
name: dev name: dev
labels: labels:

Просмотреть файл

@ -51,7 +51,21 @@ spec:
- Ingress - Ingress
- Egress - Egress
ingress: ingress:
- {} - from: []
ports:
- port: 80
protocol: TCP
- from:
- ipBlock:
cidr: 100.64.1.0/24
ports:
- port: 80
protocol: TCP
- from:
- namespaceSelector:
matchLabels:
linkerd.io/is-control-plane: "true"
- podSelector: {}
egress: egress:
- to: - to:
- podSelector: {} - podSelector: {}