- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当 pod 被删除并使用我的 postgresql 数据库重新部署时,我的 Kubernetes StorageClass 卷不会保留现有数据。当我删除 pod 时,会创建新的 pod,但数据库是空的。
我遵循了不同版本的教程(https://kubernetes.io/docs/concepts/storage/persistent-volumes/)的变体,但似乎没有任何效果。
我粘贴了所有 YAML 文件,因为问题可能出在组合中。
存储-google.yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: spingular-pvc
spec:
storageClassName: standard
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 7Gi
---
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: standard
provisioner: kubernetes.io/gce-pd
parameters:
type: pd-standard
zone: us-east4-a
apiVersion: v1
kind: Secret
metadata:
name: jhipsterpress-postgresql
namespace: default
labels:
app: jhipsterpress-postgresql
type: Opaque
data:
postgres-password: NjY0NXJxd24=
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: jhipsterpress-postgresql
namespace: default
spec:
replicas: 1
template:
metadata:
labels:
app: jhipsterpress-postgresql
spec:
volumes:
- name: data
persistentVolumeClaim:
claimName: spingular-pvc
containers:
- name: postgres
image: postgres:10.4
env:
- name: POSTGRES_USER
value: jhipsterpress
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: jhipsterpress-postgresql
key: postgres-password
ports:
- containerPort: 5432
volumeMounts:
- name: data
mountPath: /var/lib/postgresql/
---
apiVersion: v1
kind: Service
metadata:
name: jhipsterpress-postgresql
namespace: default
spec:
selector:
app: jhipsterpress-postgresql
ports:
- name: postgresqlport
port: 5432
type: LoadBalancer
apiVersion: apps/v1
kind: Deployment
metadata:
name: jhipsterpress
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: jhipsterpress
version: "v1"
template:
metadata:
labels:
app: jhipsterpress
version: "v1"
spec:
initContainers:
- name: init-ds
image: busybox:latest
command:
- '/bin/sh'
- '-c'
- |
while true
do
rt=$(nc -z -w 1 jhipsterpress-postgresql 5432)
if [ $? -eq 0 ]; then
echo "DB is UP"
break
fi
echo "DB is not yet reachable;sleep for 10s before retry"
sleep 10
done
containers:
- name: jhipsterpress-app
image: galore/jhipsterpress
env:
- name: SPRING_PROFILES_ACTIVE
value: prod
- name: SPRING_DATASOURCE_URL
value: jdbc:postgresql://jhipsterpress-postgresql.default.svc.cluster.local:5432/jhipsterpress
- name: SPRING_DATASOURCE_USERNAME
value: jhipsterpress
- name: SPRING_DATASOURCE_PASSWORD
valueFrom:
secretKeyRef:
name: jhipsterpress-postgresql
key: postgres-password
- name: JAVA_OPTS
value: " -Xmx256m -Xms256m"
resources:
requests:
memory: "256Mi"
cpu: "500m"
limits:
memory: "512Mi"
cpu: "1"
ports:
- name: http
containerPort: 8080
readinessProbe:
httpGet:
path: /management/health
port: http
initialDelaySeconds: 20
periodSeconds: 15
failureThreshold: 6
livenessProbe:
httpGet:
path: /management/health
port: http
initialDelaySeconds: 120
apiVersion: v1
kind: Service
metadata:
name: jhipsterpress
namespace: default
labels:
app: jhipsterpress
spec:
selector:
app: jhipsterpress
type: LoadBalancer
ports:
- name: http
port: 8080
@cloudshell:~ (academic-veld-230622)$ kubectl apply -f storage-google.yaml
error: error validating "storage-google.yaml": error validating data:
ValidationError(PersistentVolumeClaim.spec): unknown field "persistentVolumeReclaimPolicy" in io.k8s.api.core.v1.PersistentVolumeClaimSpec; if you choose to ignore these errors, turn validation off with --validate=false
最佳答案
请注意,要使其正常工作,您需要让您的 PVC 动态配置一个 PV 以满足其要求,然后将有一个永久的 binding在 PVC 和 PV 之间,每次您的工作负载使用 PVC 时,它将使用相同的 PV。这段摘录特别指出:
If a PV was dynamically provisioned for a new PVC, the loop will always bind that PV to the PVC
/var/lib/postgresql/
与
/var/lib/postgresql
有什么原因吗?)
persistentVolumeReclaimPolicy: Retain
适用于 PV,而不是 PVC。对于动态配置的 PV,该值为
Delete
.在您的情况下,它不适用,因为您的动态配置卷应该绑定(bind)到您的 PVC。换句话说,您没有回收该卷。
volumeClaimTemplate
的示例.
关于kubernetes StorageClass 不保留现有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55620417/
文章链接 PV 和 PVC 模式要先创建好 PV,然后再定义好 PVC 进行一对一的绑定。那么如果遇到大集群,也一一的创建吗?这样来说维护成本很高,工作量大。这个时候就有了 Kubernetes 提供
当 pod 被删除并使用我的 postgresql 数据库重新部署时,我的 Kubernetes StorageClass 卷不会保留现有数据。当我删除 pod 时,会创建新的 pod,但数据库是空的
我正在尝试使用 storageClass 设置我的 Kubernetescluster 和 Ceph 集群,这样每个 PVC 都会在 ceph 集群内自动创建一个新 PV。 但它不起作用。我已经尝试了
我想知道 reclaimPolicy 有什么区别在 StorageClass对比 PersistentVolume . 目前我们创建了多个 PersistentVolume与 StorageClass
我尝试为 Pod 部署提供 PVC,但遇到此错误: Failed to provision volume with StorageClass "xxxxxxxxxxx": could not get
我使用 kubeadm 在两台 Centos7 虚拟机上安装了 kubernetes。 我正在尝试关注 Example: Deploying Cassandra with Stateful Sets或
我创建了一个 persistentVolumeClaim在我的自定义 Kubernetes 集群上,但它似乎陷入了等待中...... 我需要安装/配置一些额外的东西吗?或者此功能是否仅在 GCP/AW
我正在尝试创建可以稍后根据需要调整大小的 pvc。 我正在使用来自 github 的代码 mongodb pvc . 我按照所有步骤创建了 pvc,如下所示: PS C:\Users> minikub
我正在尝试创建可以稍后根据需要调整大小的 pvc。 我正在使用来自 github 的代码 mongodb pvc . 我按照所有步骤创建了 pvc,如下所示: PS C:\Users> minikub
我是一名优秀的程序员,十分优秀!