Hetzner Cloud For The Win! 👑
If you are looking for cheaper Cloud Provider, you can try Hetzner Cloud (one time €20 discount from this link). Here are some insides from our Google Search Console. Date 2023-03-13
If you are looking for cheaper Cloud Provider, you can try Hetzner Cloud (one time €20 discount from this link). Here are some insides from our Google Search Console. Date 2023-03-13
You should build it from source code FROM php:8.2-fpm-alpine AS ext-apcu ENV EXT_APCU_VERSION=master RUN curl -vvv https://github.com/krakjoe/apcu.git RUN docker-php-source extract \ && apk -Uu add git \ && git clone --branch $EXT_APCU_VERSION --depth 1 https://github.com/krakjoe/
kubectl apply -f --namespace=app deployment.yaml deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: labels: workload.user.cattle.io/workloadselector: apps.deployment-sitemaps name: sitemaps spec: progressDeadlineSeconds: 10 replicas: 1 revisionHistoryLimit: 10 selector: matchLabels: workload.user.cattle.io/workloadselector: apps.deployment-sitemaps strategy: rollingUpdate: maxSurge: 50% maxUnavailable: 0% type: RollingUpdate templ
kubectl apply -f values.yaml values.yaml # Only create this for K8s 1.9+ apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: name: local-storage provisioner: kubernetes.io/no-provisioner volumeBindingMode: WaitForFirstConsumer # Supported policies: Delete, Retain reclaimPolicy: Retain --- apiVersion: v1 kind: PersistentVolume metadata: name: opensearch-agent-1 spec: accessModes: - ReadWriteOnce capacity: storage:
$ kubectl apply -f pvc.yaml --- kind: Namespace apiVersion: v1 metadata: name: mariadb-galera-new --- apiVersion: v1 kind: PersistentVolume metadata: name: mariadb-galera-new-pv namespace: mariadb-galera-new spec: storageClassName: manual # mountOptions: # - dir_mode=0777 # - file_mode=0777 capacity: storage: 40Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain hostPath: path: "/bitnami/mariadb-galera-new/" ---