We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e87a987 commit a61e370Copy full SHA for a61e370
.github/workflows/endtoend_test_containerized_metallb.yml
@@ -31,23 +31,24 @@ jobs:
31
# Apply MetalLB config for automatic IP assignment
32
cat <<EOF | kubectl apply -f -
33
apiVersion: metallb.io/v1beta1
34
- kind: BGPAdvertisement
+ kind: IPAddressPool
35
metadata:
36
- name: example
+ name: default
37
namespace: metallb-system
38
spec:
39
- communities:
40
- - no-export
41
- ipAddressPools:
42
- - default
+ addresses:
+ - 192.168.1.240-192.168.1.250
43
---
44
45
- kind: IPAddressPool
+ kind: BGPAdvertisement
46
47
- name: default
+ name: example
48
49
50
- autoAssign: true
+ communities:
+ - no-export
+ ipAddressPools:
51
+ - default
52
EOF
53
54
- name: Apply manifests
0 commit comments