mirror of
				https://github.com/clearml/clearml-helm-charts
				synced 2025-04-17 01:31:13 +00:00 
			
		
		
		
	* Changed: avoid latest image
* Changed: version bump
* Fixed: pull policy
* Removed: specific ci for glue since now it's on by default
* Fixed: don't refresh dependencies
* Changed: testing chart action version update
* Fixed: action
* Changed: dependency updates required
* Fixed: lint and install
* Revert "Changed: dependency updates required"
This reverts commit 34ee22d7d0.
* Changed: use copy of dep charts because ththey may become unavailable
* Changed: updated readme
		
	
			
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Smarty
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Smarty
		
	
	
	
	
	
| {{/* vim: set filetype=mustache: */}}
 | |
| {{/*
 | |
| Validate MariaDB required passwords are not empty.
 | |
| 
 | |
| Usage:
 | |
| {{ include "common.validations.values.mariadb.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
 | |
| Params:
 | |
|   - secret - String - Required. Name of the secret where MariaDB values are stored, e.g: "mysql-passwords-secret"
 | |
|   - subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
 | |
| */}}
 | |
| {{- define "common.validations.values.mariadb.passwords" -}}
 | |
|   {{- $existingSecret := include "common.mariadb.values.auth.existingSecret" . -}}
 | |
|   {{- $enabled := include "common.mariadb.values.enabled" . -}}
 | |
|   {{- $architecture := include "common.mariadb.values.architecture" . -}}
 | |
|   {{- $authPrefix := include "common.mariadb.values.key.auth" . -}}
 | |
|   {{- $valueKeyRootPassword := printf "%s.rootPassword" $authPrefix -}}
 | |
|   {{- $valueKeyUsername := printf "%s.username" $authPrefix -}}
 | |
|   {{- $valueKeyPassword := printf "%s.password" $authPrefix -}}
 | |
|   {{- $valueKeyReplicationPassword := printf "%s.replicationPassword" $authPrefix -}}
 | |
| 
 | |
|   {{- if and (not $existingSecret) (eq $enabled "true") -}}
 | |
|     {{- $requiredPasswords := list -}}
 | |
| 
 | |
|     {{- $requiredRootPassword := dict "valueKey" $valueKeyRootPassword "secret" .secret "field" "mariadb-root-password" -}}
 | |
|     {{- $requiredPasswords = append $requiredPasswords $requiredRootPassword -}}
 | |
| 
 | |
|     {{- $valueUsername := include "common.utils.getValueFromKey" (dict "key" $valueKeyUsername "context" .context) }}
 | |
|     {{- if not (empty $valueUsername) -}}
 | |
|         {{- $requiredPassword := dict "valueKey" $valueKeyPassword "secret" .secret "field" "mariadb-password" -}}
 | |
|         {{- $requiredPasswords = append $requiredPasswords $requiredPassword -}}
 | |
|     {{- end -}}
 | |
| 
 | |
|     {{- if (eq $architecture "replication") -}}
 | |
|         {{- $requiredReplicationPassword := dict "valueKey" $valueKeyReplicationPassword "secret" .secret "field" "mariadb-replication-password" -}}
 | |
|         {{- $requiredPasswords = append $requiredPasswords $requiredReplicationPassword -}}
 | |
|     {{- end -}}
 | |
| 
 | |
|     {{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
 | |
| 
 | |
|   {{- end -}}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Auxiliary function to get the right value for existingSecret.
 | |
| 
 | |
| Usage:
 | |
| {{ include "common.mariadb.values.auth.existingSecret" (dict "context" $) }}
 | |
| Params:
 | |
|   - subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
 | |
| */}}
 | |
| {{- define "common.mariadb.values.auth.existingSecret" -}}
 | |
|   {{- if .subchart -}}
 | |
|     {{- .context.Values.mariadb.auth.existingSecret | quote -}}
 | |
|   {{- else -}}
 | |
|     {{- .context.Values.auth.existingSecret | quote -}}
 | |
|   {{- end -}}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Auxiliary function to get the right value for enabled mariadb.
 | |
| 
 | |
| Usage:
 | |
| {{ include "common.mariadb.values.enabled" (dict "context" $) }}
 | |
| */}}
 | |
| {{- define "common.mariadb.values.enabled" -}}
 | |
|   {{- if .subchart -}}
 | |
|     {{- printf "%v" .context.Values.mariadb.enabled -}}
 | |
|   {{- else -}}
 | |
|     {{- printf "%v" (not .context.Values.enabled) -}}
 | |
|   {{- end -}}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Auxiliary function to get the right value for architecture
 | |
| 
 | |
| Usage:
 | |
| {{ include "common.mariadb.values.architecture" (dict "subchart" "true" "context" $) }}
 | |
| Params:
 | |
|   - subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
 | |
| */}}
 | |
| {{- define "common.mariadb.values.architecture" -}}
 | |
|   {{- if .subchart -}}
 | |
|     {{- .context.Values.mariadb.architecture -}}
 | |
|   {{- else -}}
 | |
|     {{- .context.Values.architecture -}}
 | |
|   {{- end -}}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Auxiliary function to get the right value for the key auth
 | |
| 
 | |
| Usage:
 | |
| {{ include "common.mariadb.values.key.auth" (dict "subchart" "true" "context" $) }}
 | |
| Params:
 | |
|   - subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
 | |
| */}}
 | |
| {{- define "common.mariadb.values.key.auth" -}}
 | |
|   {{- if .subchart -}}
 | |
|     mariadb.auth
 | |
|   {{- else -}}
 | |
|     auth
 | |
|   {{- end -}}
 | |
| {{- end -}}
 |