File tree Expand file tree Collapse file tree
dist/chart/templates/manager Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ For users who want to quickly try the operator:
42421 . Install the Custom Resource Definitions(CRD) and operator (Requires cert-manager to issue webhook certificates):
4343 - Using pre-built manifests:
4444 ``` sh
45- kubectl apply -f https://github.com/ClickHouse/clickhouse-operator/releases/download/ latest/clickhouse-operator.yaml
45+ kubectl apply -f https://github.com/ClickHouse/clickhouse-operator/releases/latest/download /clickhouse-operator.yaml
4646 ```
4747 - Using helm chart
4848 ` ` ` sh
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
55LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
66LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77LABEL operators.operatorframework.io.bundle.package.v1=clickhouse-operator
8- LABEL operators.operatorframework.io.bundle.channels.v1=alpha
8+ LABEL operators.operatorframework.io.bundle.channels.v1=stable
9+ LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
910LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.42.0
1011LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1112LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4
Original file line number Diff line number Diff line change 5050 - name : manager
5151 {{- $args := .Values.manager.args }}
5252 {{- if .Values.metrics.enable }}
53- {{- $args = append $args (printf "--metrics-bind-address=%s " .Values.metrics.port) }}
54- {{- $args = append $args (printf "--metrics-secure=%s " .Values.metrics.secure) }}
53+ {{- $args = append $args (printf "--metrics-bind-address=:%v " .Values.metrics.port) }}
54+ {{- $args = append $args (printf "--metrics-secure=%t " .Values.metrics.secure) }}
5555 {{- end }}
5656 {{- if .Values.certManager.enable }}
5757 {{- $args = append $args "--webhook-cert-path=/tmp/k8s-server/serving-certs" }}
7878 periodSeconds : 10
7979 ports :
8080 {{- if .Values.webhook.enable }}
81- - containerPort : 9443
81+ - containerPort : {{ .Values.webhook.port }}
8282 name : webhook-server
8383 protocol : TCP
8484 {{- end }}
9191 securityContext : {{ toYaml .Values.manager.podSecurityContext | nindent 22 }}
9292 {{- if .Values.certManager.enable }}
9393 volumeMounts :
94- - mountPath : /tmp/k8s-webhook- server/serving-certs
94+ - mountPath : /tmp/k8s-server/serving-certs
9595 name : serving-certs
9696 readOnly : true
9797 {{- end }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ This guide covers installing the ClickHouse Operator using kubectl and manifest
1515Install the operator and CRDs from the latest release:
1616
1717``` bash
18- kubectl apply -f https://github.com/ClickHouse/clickhouse-operator/releases/download/ < release > /clickhouse-operator.yaml
18+ kubectl apply -f https://github.com/ClickHouse/clickhouse-operator/releases/latest/download /clickhouse-operator.yaml
1919```
2020
2121This will:
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ metadata:
7070 name: clickhouse-operator
7171 namespace: clickhouse-operator-system
7272spec:
73- channel: stable
73+ channel: stable-v0
7474 name: clickhouse-operator
7575 source: clickhouse-operator-catalog
7676 sourceNamespace: clickhouse-operator-system
You can’t perform that action at this time.
0 commit comments