longhorn savegame
This commit is contained in:
59
08_Vault/justfile
Normal file
59
08_Vault/justfile
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
set fallback := true
|
||||||
|
|
||||||
|
export K8S_VAULT_NAMESPACE := env("K8S_VAULT_NAMESPACE", "vault")
|
||||||
|
export VAULT_CHART_VERSION := env("VAULT_CHART_VERSION", "0.31.0")
|
||||||
|
export VAULT_HOST := env("VAULT_HOST", "")
|
||||||
|
export VAULT_ADDR := "https://" + VAULT_HOST
|
||||||
|
export VAULT_DEBUG := env("VAULT_DEBUG", "false")
|
||||||
|
SECRET_PATH := "secret"
|
||||||
|
|
||||||
|
|
||||||
|
[private]
|
||||||
|
default:
|
||||||
|
@just --list --unsorted --list-submodules
|
||||||
|
|
||||||
|
# Add Helm repository
|
||||||
|
add-helm-repo:
|
||||||
|
helm repo add hashicorp https://helm.releases.hashicorp.com
|
||||||
|
helm repo update
|
||||||
|
|
||||||
|
# Remove Helm repository
|
||||||
|
remove-helm-repo:
|
||||||
|
helm repo remove hashicorp
|
||||||
|
|
||||||
|
|
||||||
|
# Create Vault namespace
|
||||||
|
create-namespace:
|
||||||
|
@kubectl get namespace ${K8S_VAULT_NAMESPACE} > /dev/null || kubectl create namespace ${K8S_VAULT_NAMESPACE}
|
||||||
|
|
||||||
|
# Delete Vault namespace
|
||||||
|
delete-namespace:
|
||||||
|
@kubectl delete namespace ${K8S_VAULT_NAMESPACE} --ignore-not-found
|
||||||
|
|
||||||
|
install:
|
||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
just create-namespace
|
||||||
|
just add-helm-repo
|
||||||
|
|
||||||
|
gomplate -f vault-values.gomplate.yaml -o vault-values.yaml
|
||||||
|
|
||||||
|
helm upgrade \
|
||||||
|
--cleanup-on-fail \
|
||||||
|
--install \
|
||||||
|
vault \
|
||||||
|
hashicorp/vault \
|
||||||
|
--namespace ${K8S_VAULT_NAMESPACE} \
|
||||||
|
--wait \
|
||||||
|
-f vault-values.yaml
|
||||||
|
|
||||||
|
kubectl wait pod --for=condition=PodReadyToStartContainers \
|
||||||
|
-n ${K8S_VAULT_NAMESPACE} vault-0 --timeout=5m
|
||||||
|
|
||||||
|
|
||||||
|
# Uninstall Vault
|
||||||
|
uninstall delete-ns='false':
|
||||||
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
helm uninstall vault -n ${K8S_VAULT_NAMESPACE} --ignore-not-found --wait
|
||||||
|
just delete-namespace
|
||||||
16
08_Vault/vault-values.gomplate.yaml
Normal file
16
08_Vault/vault-values.gomplate.yaml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
server:
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: traefik
|
||||||
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||||
|
ingressClassName: traefik
|
||||||
|
hosts:
|
||||||
|
- host: {{ .Env.VAULT_HOST }}
|
||||||
|
paths:
|
||||||
|
- /
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- {{ .Env.VAULT_HOST }}
|
||||||
|
dataStorage:
|
||||||
|
storageClass: longhorn
|
||||||
16
08_Vault/vault-values.yaml
Normal file
16
08_Vault/vault-values.yaml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
server:
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: traefik
|
||||||
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||||
|
ingressClassName: traefik
|
||||||
|
hosts:
|
||||||
|
- host: vault.test.k8s.schnrbs.work
|
||||||
|
paths:
|
||||||
|
- /
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- vault.test.k8s.schnrbs.work
|
||||||
|
dataStorage:
|
||||||
|
storageClass: longhorn
|
||||||
@@ -1,16 +1,42 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: foo
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: longhorn-nginx-pvc
|
||||||
|
namespace: foo
|
||||||
|
spec:
|
||||||
|
storageClassName: longhorn # Die gleiche StorageClass wie im PV
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 10Gi # Die angeforderte Größe sollte mit der des PV übereinstimmen
|
||||||
|
# volumeName: longhorn-test-pv # Der Name des PV, das für diesen PVC verwendet werden soll
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
kind: Pod
|
kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: longhorn-demo
|
name: longhorn-demo
|
||||||
namespace: test
|
namespace: foo
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: demo-container
|
- name: demo-container
|
||||||
image: nginx:latest
|
image: nginx:latest
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "64Mi"
|
||||||
|
cpu: "250m"
|
||||||
|
limits:
|
||||||
|
memory: "128Mi"
|
||||||
|
cpu: "500m"
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /usr/share/nginx/html
|
- mountPath: /usr/share/nginx/html
|
||||||
name: longhorn-volume
|
name: longhorn-volume
|
||||||
volumes:
|
volumes:
|
||||||
- name: longhorn-volume
|
- name: longhorn-volume
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: longhorn-test-pvc
|
claimName: longhorn-nginx-pvc
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
set fallback:=true
|
set fallback:=true
|
||||||
|
|
||||||
export LONGHORN_NAMESPACE := env("LONGHORN_NAMESPACE","longhorn-system")
|
export LONGHORN_NAMESPACE := env("LONGHORN_NAMESPACE","longhorn-system")
|
||||||
|
export LONGHORN_VERSION := env("LONGHORN_VERSION","1.10.1")
|
||||||
|
|
||||||
add-helm-repo:
|
add-helm-repo:
|
||||||
helm repo add longhorn https://charts.longhorn.io --force-update
|
helm repo add longhorn https://charts.longhorn.io --force-update
|
||||||
@@ -29,8 +30,12 @@ install:
|
|||||||
--cleanup-on-fail \
|
--cleanup-on-fail \
|
||||||
--namespace ${LONGHORN_NAMESPACE} \
|
--namespace ${LONGHORN_NAMESPACE} \
|
||||||
--create-namespace \
|
--create-namespace \
|
||||||
|
--version ${LONGHORN_VERSION} \
|
||||||
--values longhorn-values.yaml
|
--values longhorn-values.yaml
|
||||||
|
|
||||||
|
# remove default storage class annotation from local-path storage class
|
||||||
|
kubectl patch storageclass local-path -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}'
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|||||||
1
env/env.local.gomplate
vendored
1
env/env.local.gomplate
vendored
@@ -7,3 +7,4 @@ METALLB_ADDRESS_RANGE={{ .Env.METALLB_ADDRESS_RANGE }}
|
|||||||
CLOUDFLARE_API_TOKEN={{ .Env.CLOUDFLARE_API_TOKEN}}
|
CLOUDFLARE_API_TOKEN={{ .Env.CLOUDFLARE_API_TOKEN}}
|
||||||
ACME_EMAIL={{ .Env.ACME_EMAIL}}
|
ACME_EMAIL={{ .Env.ACME_EMAIL}}
|
||||||
EXTERNAL_DOMAIN={{ .Env.EXTERNAL_DOMAIN }}
|
EXTERNAL_DOMAIN={{ .Env.EXTERNAL_DOMAIN }}
|
||||||
|
VAULT_HOST={{ .Env.VAULT_HOST }}
|
||||||
|
|||||||
10
env/justfile
vendored
10
env/justfile
vendored
@@ -120,6 +120,16 @@ setup:
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
while [ -z "${VAULT_HOST}" ]; do
|
||||||
|
if ! VAULT_HOST=$(
|
||||||
|
gum input --prompt="Vault hostname: " \
|
||||||
|
--width=100 --placeholder="vault"
|
||||||
|
); then
|
||||||
|
echo "Setup cancelled." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
echo "Generating .env.local file..."
|
echo "Generating .env.local file..."
|
||||||
rm -f ../.env.local
|
rm -f ../.env.local
|
||||||
gomplate -f env.local.gomplate -o ../.env.local
|
gomplate -f env.local.gomplate -o ../.env.local
|
||||||
|
|||||||
Reference in New Issue
Block a user