professional-service/examples/ske-stackit-sfs-integration/README.md
Mauritz Uphoff 5d315400b3
All checks were successful
Professional Services CI / Secret Scanner (TruffleHog) (pull_request) Successful in 1m43s
Professional Services CI / Pre-Commit Hooks (pull_request) Successful in 5m15s
chore(example): ske sfs integration example
Signed-off-by: Mauritz Uphoff <mauritz.uphoff@stackit.cloud>
2026-04-16 08:28:06 +02:00

940 B

STACKIT File Storage Example Deployment

Terraform Example of deploying a STACKIT File Storage NFS Service

Deployment Scope

  • Network Area with Routing Tables Enabled
  • Projects attached to the Network area
  • STACKIT SFS Resources
  • SKE Cluster for RWX usage

Setup RWX on SKE with STACKIT SFS

Install Helmchart

helm repo add nfs-subdir-external-provisioner https://kubernetes-sigs.github.io/nfs-subdir-external-provisioner/
helm repo update
helm install nfs-provisioner nfs-subdir-external-provisioner/nfs-subdir-external-provisioner \
    --set nfs.server=1.2.3.4 \
    --set nfs.path=/srv/nfs/storage \
    --set storageClass.name=nfs-client

Create PersistentVolumeClaim from NFS Storage

kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: test-claim
spec:
  storageClassName: nfs-client
  accessModes:
    - ReadWriteMany
  resources:
    requests:
      storage: 1Mi