forked from apache/doris-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ chore: bump chart version to 1.6.2-rc.1
Updates the chart version to 1.6.2-rc.1 to reflect recent changes. Adds annotations for production run mode in both frontend and backend specifications. Introduces initContainers for flexibility in container initialization. Adds a new dorisManager template for MySQL user management, enhancing database integration capabilities.
- Loading branch information
1 parent
b69d0b6
commit 5833f9e
Showing
6 changed files
with
318 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{{- if and .Values.dorisManager.enabled .Values.dorisCluster.authSecret }} | ||
apiVersion: mysql.nakamasato.com/v1alpha1 | ||
kind: MySQL | ||
metadata: | ||
name: {{ template "doriscluster.name" . }} | ||
namespace: {{ template "doriscluster.namespace" . }} | ||
spec: | ||
host: {{ template "doriscluster.name" . }}-fe-service | ||
port: {{ .Values.dorisManager.port }} | ||
adminUser: | ||
name: {{ template "doriscluster.name" . }}-admin-user | ||
type: k8s | ||
adminPassword: | ||
name: {{ template "doriscluster.name" . }}-admin-password | ||
type: k8s | ||
{{- range .Values.dorisManager.users }} | ||
--- | ||
apiVersion: mysql.nakamasato.com/v1alpha1 | ||
kind: MySQLUser | ||
metadata: | ||
name: {{ .username | replace "_" "-" }} | ||
namespace: {{ template "doriscluster.namespace" $ }} | ||
spec: | ||
clusterName: {{ template "doriscluster.name" $ }} | ||
username: {{ .username }} | ||
secretRef: | ||
name: {{ template "doriscluster.name" $ }}-user-credentials | ||
key: {{ .username }} | ||
{{- if .grants }} | ||
grants: | ||
{{- toYaml .grants | nindent 4 }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.