chore: add local-path-provisioner csi
diff --git a/roles/csi/meta/main.yml b/roles/csi/meta/main.yml
index 5386ec6..210d14f 100644
--- a/roles/csi/meta/main.yml
+++ b/roles/csi/meta/main.yml
@@ -25,6 +25,8 @@
dependencies:
- role: defaults
+ - role: local_path_provisioner
+ when: csi_driver == "local-path-provisioner"
- role: ceph_csi_rbd
when: csi_driver == "rbd"
- role: powerstore_csi
diff --git a/roles/defaults/defaults/main.yml b/roles/defaults/defaults/main.yml
index 5806066..e065164 100644
--- a/roles/defaults/defaults/main.yml
+++ b/roles/defaults/defaults/main.yml
@@ -99,6 +99,8 @@
kube_scheduler: registry.k8s.io/kube-scheduler:v1.22.17
kube_state_metrics: registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.6.0
libvirt: quay.io/vexxhost/libvirtd:yoga-focal
+ local_path_provisioner_helper: docker.io/library/busybox:1.36.0
+ local_path_provisioner: docker.io/rancher/local-path-provisioner:v0.0.24
loki: docker.io/grafana/loki:2.7.3
loki_gateway: docker.io/nginxinc/nginx-unprivileged:1.19-alpine
magnum_api: quay.io/vexxhost/magnum:zed
diff --git a/roles/local_path_provisioner/README.md b/roles/local_path_provisioner/README.md
new file mode 100644
index 0000000..dce762c
--- /dev/null
+++ b/roles/local_path_provisioner/README.md
@@ -0,0 +1 @@
+# `local_path_provisioner`
diff --git a/roles/local_path_provisioner/defaults/main.yml b/roles/local_path_provisioner/defaults/main.yml
new file mode 100644
index 0000000..c9cbce7
--- /dev/null
+++ b/roles/local_path_provisioner/defaults/main.yml
@@ -0,0 +1,20 @@
+# Copyright (c) 2023 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+local_path_provisioner_helm_release_name: local-path-provisioner
+local_path_provisioner_helm_chart_path: "../../charts/local-path-provisioner/"
+local_path_provisioner_helm_chart_ref: /usr/local/src/local-path-provisioner
+
+local_path_provisioner_helm_release_namespace: local-path-storage
+local_path_provisioner_helm_values: {}
diff --git a/roles/local_path_provisioner/meta/main.yml b/roles/local_path_provisioner/meta/main.yml
new file mode 100644
index 0000000..a07ef80
--- /dev/null
+++ b/roles/local_path_provisioner/meta/main.yml
@@ -0,0 +1,31 @@
+# Copyright (c) 2022 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+galaxy_info:
+ author: VEXXHOST, Inc.
+ description: Ansible role for "local-path-provisioner"
+ license: Apache-2.0
+ min_ansible_version: 5.5.0
+ standalone: false
+ platforms:
+ - name: Ubuntu
+ versions:
+ - focal
+
+dependencies:
+ - role: defaults
+ - role: vexxhost.kubernetes.upload_helm_chart
+ vars:
+ upload_helm_chart_src: "{{ local_path_provisioner_helm_chart_path }}"
+ upload_helm_chart_dest: "{{ local_path_provisioner_helm_chart_ref }}"
diff --git a/roles/local_path_provisioner/tasks/main.yml b/roles/local_path_provisioner/tasks/main.yml
new file mode 100644
index 0000000..1554afa
--- /dev/null
+++ b/roles/local_path_provisioner/tasks/main.yml
@@ -0,0 +1,23 @@
+# Copyright (c) 2022 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+- name: Deploy Helm chart
+ run_once: true
+ kubernetes.core.helm:
+ name: "{{ local_path_provisioner_helm_release_name }}"
+ chart_ref: "{{ local_path_provisioner_helm_chart_ref }}"
+ release_namespace: "{{ local_path_provisioner_helm_release_namespace }}"
+ create_namespace: true
+ kubeconfig: /etc/kubernetes/admin.conf
+ values: "{{ _local_path_provisioner_helm_values | combine(local_path_provisioner_helm_values, recursive=True) }}"
diff --git a/roles/local_path_provisioner/vars/main.yml b/roles/local_path_provisioner/vars/main.yml
new file mode 100644
index 0000000..7858845
--- /dev/null
+++ b/roles/local_path_provisioner/vars/main.yml
@@ -0,0 +1,24 @@
+# Copyright (c) 2022 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+_local_path_provisioner_helm_values:
+ image:
+ repository: "{{ atmosphere_images['local_path_provisioner'] | vexxhost.kubernetes.docker_image('name') }}"
+ tag: "{{ atmosphere_images['local_path_provisioner'] | vexxhost.kubernetes.docker_image('tag') }}"
+ helperImage:
+ repository: "{{ atmosphere_images['local_path_provisioner_helper'] | vexxhost.kubernetes.docker_image('name') }}"
+ tag: "{{ atmosphere_images['local_path_provisioner_helper'] | vexxhost.kubernetes.docker_image('tag') }}"
+ storageClass:
+ defaultClass: true
+ name: general