File tree Expand file tree Collapse file tree 3 files changed +18
-10
lines changed
2-kubernetes-cluster/local
3-continuous-deployment/flux/services/producer
7-service-mesh/flux/infrastructure Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ cilium-start:
22
22
23
23
24
24
stop :
25
- @kubectl delete -k ../../3-continuous-deployment/flux
26
- @flux uninstall --namespace=flux-system
27
25
@kind delete cluster
28
26
29
27
start : kind-start cilium-start
@@ -37,3 +35,6 @@ start: kind-start cilium-start
37
35
--path="./3-continuous-deployment/flux" \
38
36
--interval=10m \
39
37
--health-check-timeout=2m
38
+
39
+ kubefwd :
40
+ sudo kubefwd svc -n filhodanuvem-services
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ RUN go build main.go
7
7
8
8
9
9
FROM alpine:3.8 AS run
10
+ WORKDIR /the/workdir/path
10
11
COPY --from=build /gowork/main ./main
11
12
12
13
CMD ./main
Original file line number Diff line number Diff line change @@ -3,11 +3,17 @@ kind: CiliumNetworkPolicy
3
3
metadata :
4
4
name : allow-outside-cluster
5
5
namespace : filhodanuvem-services
6
- spec :
7
- endpointSelector : {}
8
- ingress :
9
- - fromEntities :
10
- - world
11
- egress :
12
- - toEntities :
13
- - world
6
+ specs :
7
+ - endpointSelector : {}
8
+ ingress :
9
+ - fromEntities :
10
+ - world
11
+ egress :
12
+ - toEntities :
13
+ - world
14
+ - endpointSelector : {}
15
+ egress :
16
+ - toEndpoints :
17
+ - matchLabels :
18
+ " k8s:io.kubernetes.pod.namespace " : kube-system
19
+ " k8s:k8s-app " : kube-dns
You can’t perform that action at this time.
0 commit comments