-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release (Helm): Offer decoupled configmap generation in Helm chart
This allows users to deploy the helm chart without having to also directly specify the configmap values all the time in the values section. Also contains a slew of typo fixes and adds the ability to choose feature toggles. Signed-off-by: Jeremy Ho <jujaga@gmail.com>
- v.0.9.0
- v0.8.0
- v0.7.0
- v0.6.0
- v0.5.0
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.0
- v0.2.1
- postgrescluster-2.0.2
- postgrescluster-2.0.1
- postgrescluster-2.0.0
- postgrescluster-1.1.7
- postgrescluster-1.1.6
- postgrescluster-1.1.5
- postgrescluster-1.1.4
- postgrescluster-1.1.3
- postgrescluster-1.1.2
- postgrescluster-1.1.1
- postgrescluster-1.1.0
- postgrescluster-1.0.0
- postgrescluster-0.1.7
- postgrescluster-0.1.6
- postgrescluster-0.1.5
- postgrescluster-0.1.4
- postgrescluster-0.1.3
- postgrescluster-0.1.2
- common-object-management-service-2.0.3
- common-object-management-service-2.0.1
- common-object-management-service-2.0.0
- common-object-management-service-1.1.7
- common-object-management-service-1.1.6
- common-object-management-service-1.1.5
- common-object-management-service-1.1.4
- common-object-management-service-1.1.3
- common-object-management-service-1.1.2
- common-object-management-service-1.1.1
- common-object-management-service-1.1.0
- common-object-management-service-1.0.0
- common-object-management-service-0.1.7
- common-object-management-service-0.1.6
- common-object-management-service-0.1.5
- common-object-management-service-0.1.4
- common-object-management-service-0.1.3
- common-object-management-service-0.1.2
- common-object-management-service-0.0.26
- common-object-management-service-0.0.25
- common-object-management-service-0.0.24
- common-object-management-service-0.0.23
- common-object-management-service-0.0.22
- common-object-management-service-0.0.21
- common-object-management-service-0.0.20
- common-object-management-service-0.0.19
- common-object-management-service-0.0.18
- common-object-management-service-0.0.17
- common-object-management-service-0.0.16
- common-object-management-service-0.0.15
- common-object-management-service-0.0.14
- common-object-management-service-0.0.13
- common-object-management-service-0.0.12
- common-object-management-service-0.0.11
- common-object-management-service-0.0.10
- common-object-management-service-0.0.9
- common-object-management-service-0.0.8
- common-object-management-service-0.0.7
- common-object-management-service-0.0.6
- common-object-management-service-0.0.5
- common-object-management-service-0.0.4
- common-object-management-service-0.0.3
- common-object-management-service-0.0.2
Showing
10 changed files
with
40 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{{- if .Values.config.enabled -}} | ||
{{- if .Values.config.enabled }} | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{{- if .Values.route.enabled -}} | ||
--- | ||
apiVersion: route.openshift.io/v1 | ||
kind: Route | ||
metadata: | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{{- if .Values.serviceAccount.enabled -}} | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
|
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