-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pgadmin4] Be able to define existingSecret or existingConfigmap cont…
…aining serverDefinitions (#249) Signed-off-by: Alex Hofmann <[email protected]>
- Loading branch information
Showing
8 changed files
with
107 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,6 +68,8 @@ The command removes nearly all the Kubernetes components associated with the cha | |
| `strategy` | Specifies the strategy used to replace old Pods by new ones | `{}` | | ||
| `serverDefinitions.enabled` | Enables Server Definitions | `false` | | ||
| `serverDefinitions.resourceType` | The type of resource to deploy server definitions (either `ConfigMap` or `Secret`) | `ConfigMap` | | ||
| `serverDefinitions.existingConfigmap` | The name of a configMap containing Server Definitions. Only used when `serverDefinitions.resourceType` is `ConfigMap` | `""` | | ||
| `serverDefinitions.existingSecret` | The name of a Secret containing Server Definitions. Only used when `serverDefinitions.resourceType` is `Secret` | `""` | | ||
| `serverDefinitions.servers` | Pre-configured server parameters | `{}` | | ||
| `networkPolicy.enabled` | Enables Network Policy | `true` | | ||
| `ingress.enabled` | Enables Ingress | `false` | | ||
|
@@ -79,7 +81,7 @@ The command removes nearly all the Kubernetes components associated with the cha | |
| `extraConfigmapMounts` | Additional configMap volume mounts for pgadmin4 pod | `[]` | | ||
| `extraSecretMounts` | Additional secret volume mounts for pgadmin4 pod | `[]` | | ||
| `extraContainers` | Sidecar containers to add to the pgadmin4 pod | `"[]"` | | ||
| `existingSecret` | The name of an existing secret containing the pgadmin4 default password. | `""` | | ||
| `existingSecret` | The name of an existing secret containing the pgadmin4 default password and, optionally, Server Definitions. | `""` | | ||
| `secretKeys.pgadminPasswordKey` | Name of key in existing secret to use for default pgadmin credentials. Only used when `existingSecret` is set. | `"password"` | | ||
| `extraInitContainers` | Sidecar init containers to add to the pgadmin4 pod | `"[]"` | | ||
| `env.email` | pgAdmin4 default email. Needed chart reinstall for apply changes | `[email protected]` | | ||
|
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
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