-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup to refactor the common helm helpers and to try to support ins…
…talling the capture proxy by itself. Signed-off-by: Greg Schohn <[email protected]>
- Loading branch information
1 parent
a7ce390
commit 0b89305
Showing
20 changed files
with
105 additions
and
47 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
**/charts/*.tgz |
12 changes: 12 additions & 0 deletions
12
deployment/k8s/charts/aggregates/mockCustomerClusters/Chart.lock
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,12 @@ | ||
dependencies: | ||
- name: elasticsearch | ||
repository: https://helm.elastic.co | ||
version: 8.5.1 | ||
- name: capture-proxy | ||
repository: file://../../components/captureProxy | ||
version: 0.1.0 | ||
- name: opensearch | ||
repository: https://opensearch-project.github.io/helm-charts/ | ||
version: 2.23.1 | ||
digest: sha256:4a32b1cb130067ad9ac20d5e12caaab2dcf4463bce2b214bc87107f407a2f592 | ||
generated: "2024-10-28T23:14:40.432564-04:00" |
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
1 change: 1 addition & 0 deletions
1
deployment/k8s/charts/aggregates/mockCustomerClusters/charts/captureProxy
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 @@ | ||
../../../components/captureProxy |
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,7 @@ | ||
apiVersion: v2 | ||
name: capture-proxy | ||
version: 0.1.0 | ||
dependencies: | ||
- name: helm-common | ||
repository: file://../helm-common | ||
version: 0.1.0 |
1 change: 1 addition & 0 deletions
1
deployment/k8s/charts/components/captureProxy/charts/helm-common
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 @@ | ||
../../helm-common |
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
13 changes: 13 additions & 0 deletions
13
deployment/k8s/charts/components/captureProxy/templates/service.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ include "generic.fullname" . }} | ||
spec: | ||
selector: | ||
app: {{ include "generic.fullname" . }} | ||
env: v1 | ||
ports: | ||
- protocol: TCP | ||
port: 9200 | ||
targetPort: 9200 | ||
type: ClusterIP |
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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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,5 @@ | ||
apiVersion: v2 | ||
name: helm-common | ||
version: 0.1.0 | ||
description: A common library for the Migration Assistant | ||
type: library |
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
File renamed without changes.
File renamed without changes.
12 changes: 7 additions & 5 deletions
12
...plates/_pullEnvVariablesFromConfigMap.tpl → ...plates/_pullEnvVariablesFromConfigMap.tpl
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
File renamed without changes.
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,2 +1,3 @@ | ||
proxy: | ||
destinationUrl: "http://elasticsearch:9200" | ||
parameters: | ||
destinationUri: | ||
value: "http://elasticsearch:9200" |
24 changes: 13 additions & 11 deletions
24
deployment/k8s/helmValues/localTesting/sourceElasticsearchCluster.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
13 changes: 6 additions & 7 deletions
13
deployment/k8s/helmValues/localTesting/targetOpenSearchCluster.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
target: | ||
extraEnvs: | ||
- name: OPENSEARCH_INITIAL_ADMIN_PASSWORD | ||
value: myStrongPassword123! | ||
singleNode: true | ||
persistence: | ||
enabled: false | ||
extraEnvs: | ||
- name: OPENSEARCH_INITIAL_ADMIN_PASSWORD | ||
value: myStrongPassword123! | ||
singleNode: true | ||
persistence: | ||
enabled: false |