-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reuse the resource we already configure for the Operator * Update instructions on how to use these deployments * Small fixes to the readme Signed-off-by: Moritz Wanzenböck <[email protected]>
- Loading branch information
Showing
10 changed files
with
86 additions
and
1,890 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: linstor-csi-controller | ||
spec: | ||
template: | ||
spec: | ||
initContainers: | ||
- name: linstor-wait-api-online | ||
env: | ||
- name: LS_CONTROLLERS | ||
value: LINSTOR_CONTROLLER_URL | ||
containers: | ||
- name: linstor-csi | ||
env: | ||
- name: LS_CONTROLLERS | ||
value: LINSTOR_CONTROLLER_URL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
metadata: | ||
name: linstor-csi-node | ||
spec: | ||
template: | ||
spec: | ||
initContainers: | ||
- name: linstor-wait-node-online | ||
env: | ||
- name: LS_CONTROLLERS | ||
value: LINSTOR_CONTROLLER_URL | ||
containers: | ||
- name: linstor-csi | ||
env: | ||
- name: LS_CONTROLLERS | ||
value: LINSTOR_CONTROLLER_URL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
namespace: piraeus-datastore | ||
resources: | ||
- namespace.yaml | ||
- https://github.com/piraeusdatastore/piraeus-operator//pkg/resources/cluster/csi-controller?ref=v2.5.2 | ||
- https://github.com/piraeusdatastore/piraeus-operator//pkg/resources/cluster/csi-node?ref=v2.5.2 | ||
images: | ||
- name: csi-attacher | ||
newName: registry.k8s.io/sig-storage/csi-attacher | ||
newTag: v4.6.1 | ||
- name: csi-external-health-monitor-controller | ||
newName: registry.k8s.io/sig-storage/csi-external-health-monitor-controller | ||
newTag: v0.12.1 | ||
- name: csi-livenessprobe | ||
newName: registry.k8s.io/sig-storage/livenessprobe | ||
newTag: v2.13.1 | ||
- name: csi-node-driver-registrar | ||
newName: registry.k8s.io/sig-storage/csi-node-driver-registrar | ||
newTag: v2.11.1 | ||
- name: csi-provisioner | ||
newName: registry.k8s.io/sig-storage/csi-provisioner | ||
newTag: v5.0.1 | ||
- name: csi-resizer | ||
newName: registry.k8s.io/sig-storage/csi-resizer | ||
newTag: v1.11.1 | ||
- name: csi-snapshotter | ||
newName: registry.k8s.io/sig-storage/csi-snapshotter | ||
newTag: v8.0.1 | ||
- name: linstor-csi | ||
newName: quay.io/piraeusdatastore/piraeus-csi | ||
newTag: v1.6.3 | ||
patches: | ||
- path: controller-patch.yaml | ||
- path: daemonset-patch.yaml | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization |
Oops, something went wrong.