Skip to content

Commit

Permalink
Create metallb.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pavan-kumar-99 authored Jun 15, 2024
1 parent 44ab879 commit 682dbfa
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions clusters/home-cluster/metallb/metallb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# # see what changes would be made, returns nonzero returncode if different
# kubectl get configmap kube-proxy -n kube-system -o yaml | \
# sed -e "s/strictARP: false/strictARP: true/" | \
# kubectl diff -f - -n kube-system

# # actually apply the changes, returns nonzero returncode on errors only
# kubectl get configmap kube-proxy -n kube-system -o yaml | \
# sed -e "s/strictARP: false/strictARP: true/" | \
# kubectl apply -f - -n kube-system

apiVersion: source.toolkit.fluxcd.io/v1
kind: HelmRepository
metadata:
name: metallb
namespace: flux-system
spec:
interval: 1m
url: https://metallb.github.io/metallb
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: metallb
namespace: metallb
spec:
interval: 10m
chart:
spec:
chart: metallb
version: '0.14.5'
sourceRef:
kind: HelmRepository
name: metallb
namespace: flux-system
interval: 1m

0 comments on commit 682dbfa

Please sign in to comment.