File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ metadata:
6
6
namespace : metallb-system
7
7
spec :
8
8
addresses :
9
- - 139.229.135.35 /32
9
+ - 139.229.141.7 /32
10
10
autoAssign : false
11
11
---
12
12
apiVersion : metallb.io/v1beta1
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -xe
3
3
4
+ # change back to repo add because when adding --repo it does a temp and quick fetch,
5
+ # but if the index.yaml is too big, it fails and doesnt found the version. (bug)
6
+
7
+ helm repo add metallb https://metallb.github.io/metallb
8
+ helm repo update
4
9
helm upgrade --install metallb metallb/metallb \
5
- --repo https://metallb.github.io/metallb \
6
10
--version 0.14.9 \
7
- --namespace metallb-system --create-namespace \
11
+ --namespace metallb-system \
12
+ --create-namespace \
8
13
--atomic \
9
- --timeout 600s --wait
14
+ --timeout 600s \
15
+ --wait
10
16
11
17
kubectl wait --for=condition=Ready pod -l app.kubernetes.io/name=metallb -n metallb-system --timeout=180s
12
18
You can’t perform that action at this time.
0 commit comments