We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce90e20 commit f30cdbaCopy full SHA for f30cdba
manifests/installation/storage/mariadb/statefulset.yaml
@@ -58,6 +58,9 @@ spec:
58
# 指定了存储卷的规格信息,包括访问模式和资源请求等
59
spec:
60
# 指定了存储卷的访问模式为"ReadWriteOnce",表示可以被单个节点挂载为读写模式
61
+ # ReadWriteOnce: PV 能以 read-write 模式 mount 到单个节点
62
+ # ReadOnlyMany: PV 能以 read-only 模式 mount 到多个节点
63
+ # ReadWriteMany: PV 能以 read-write 模式 mount 到多个节点
64
accessModes: [ "ReadWriteOnce" ]
65
# 指定了存储卷的资源请求信息
66
resources:
scripts/make-rules/common-versions.mk
@@ -9,7 +9,7 @@ HADOLINT_VER ?= v2.10.0
9
CHART_VERSION ?= 1.0.0
10
#KIND_VERSION ?= v0.22.0
11
KIND_VERSION ?= v0.19.0
12
-HELM_VERSION ?= v3.8.1
+HELM_VERSION ?= v3.15.1
13
GO_TESTS_SUM_VERSION ?=v1.6.4
14
GOLANGCI_LINT_VERSION := v1.55.2
15
YQ_VERSION ?= v4.25.2
0 commit comments