-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e7a558
commit e85f7a6
Showing
7 changed files
with
62 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,15 +31,6 @@ jobs: | |
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Set up Helm chart dependencies | ||
id: helm-chart-dependencies | ||
run: | | ||
helm repo add bitnami https://charts.bitnami.com/bitnami | ||
helm repo add elastic https://helm.elastic.co/ | ||
helm repo add opensearch https://opensearch-project.github.io/helm-charts/ | ||
helm repo update | ||
helm dependency update ./helm/cfgov | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config ct.yaml | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# These values are required, and always included by helm-install.sh | ||
# Some of these values, are needed to set certain values needed between | ||
# Sibling charts from the Parent chart (cfgov). | ||
# | ||
# Everything can also be overridden explicitly with --set | ||
|
||
elasticsearch: | ||
# using release name to always get unique naming, | ||
# as elasticsearch chart breaks convention | ||
clusterName: "${RELEASE}-elasticsearch" | ||
|
||
kibana: | ||
# match the generated elasticsearch cluster name, | ||
# overridable with --set kibana.elasticsearchHosts, which is useful | ||
# when using an external ElasticSearch host and not the Child chart | ||
elasticsearchHosts: "http://${RELEASE}-elasticsearch-master:9200" | ||
|
||
# ingress is only used for local deployments | ||
ingress: | ||
hosts: | ||
- host: ${RELEASE}.localhost # overridable with --set ingress.hosts[0].host | ||
paths: | ||
- path: / | ||
pathType: ImplementationSpecific | ||
|
||
release: | ||
branch: ${RELEASE_BRANCH} | ||
owner: ${RELEASE_OWNER} | ||
gitSHA: ${GitSHA} |