charts
diff --git a/charts/metallb-config/.helmignore b/charts/metallb-config/.helmignore
new file mode 100644
index 0000000..0e8a0eb
--- /dev/null
+++ b/charts/metallb-config/.helmignore
@@ -0,0 +1,23 @@
+# Patterns to ignore when building packages.
+# This supports shell glob matching, relative path matching, and
+# negation (prefixed with !). Only one pattern per line.
+.DS_Store
+# Common VCS dirs
+.git/
+.gitignore
+.bzr/
+.bzrignore
+.hg/
+.hgignore
+.svn/
+# Common backup files
+*.swp
+*.bak
+*.tmp
+*.orig
+*~
+# Various IDEs
+.project
+.idea/
+*.tmproj
+.vscode/
diff --git a/charts/metallb-config/Chart.yaml b/charts/metallb-config/Chart.yaml
new file mode 100644
index 0000000..5200ea8
--- /dev/null
+++ b/charts/metallb-config/Chart.yaml
@@ -0,0 +1,6 @@
+apiVersion: v2
+name: metallb-config
+description: A Helm chart to configure Metallb for PCloud
+type: application
+version: 0.0.1
+appVersion: "0.0.1"
diff --git a/charts/metallb-config/templates/ip-address-pool.yaml b/charts/metallb-config/templates/ip-address-pool.yaml
new file mode 100644
index 0000000..626d481
--- /dev/null
+++ b/charts/metallb-config/templates/ip-address-pool.yaml
@@ -0,0 +1,17 @@
+apiVersion: metallb.io/v1beta1
+kind: IPAddressPool
+metadata:
+ name: local
+ namespace: {{ .Release.Namespace }}
+spec:
+ addresses:
+ - {{ .Values.from }}-{{ .Values.to }}
+---
+apiVersion: metallb.io/v1beta1
+kind: L2Advertisement
+metadata:
+ name: l2-advertisement
+ namespace: metallb-system
+spec:
+ ipAddressPools:
+ - local
diff --git a/charts/metallb-config/values.yaml b/charts/metallb-config/values.yaml
new file mode 100644
index 0000000..1a5f4fe
--- /dev/null
+++ b/charts/metallb-config/values.yaml
@@ -0,0 +1,2 @@
+from: 192.168.0.200
+to: 192.168.0.250