Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Up version helm chart and docker #130

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ opensearchHosts: "https://opensearch-cluster-leader:9200"
replicaCount: 2

image:
repository: "opensearchplayground/opensearch-dashboards"
repository: "opensearchproject/opensearch-dashboards"
# override image tag, which is .Chart.AppVersion by default
tag: "latest"
# Always/Never/IfNotPresent
Expand Down Expand Up @@ -150,3 +150,8 @@ affinity: {}

# -- Array of extra K8s manifests to deploy
extraObjects: []

# specify the plugin to install
plugins:
enabled: true
installList: ["https://github.com/BionIT/google-analytics-plugin/releases/download/2.4.1/googleAnalytics-2.4.1.zip"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we copy this zip file to our repo, create a plugin folder to host all plugins zip file? Thanks

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can move google analytics repo to the org folder if we want so that we have the source. For artifact, ideally we should have a common place to store them, and I think using an object storage or keeping in a public repository are both fine~ We can discuss more

Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ opensearchHosts: "https://opensearch-cluster-leader:9200"
replicaCount: 3

image:
repository: "opensearchplayground/opensearch-dashboards"
repository: "opensearchproject/opensearch-dashboards"
# override image tag, which is .Chart.AppVersion by default
tag: "2.4.0-11282022"
tag: "latest"
pullPolicy: "Always"

imagePullSecrets: []
Expand Down Expand Up @@ -168,3 +168,8 @@ affinity: {}

# -- Array of extra K8s manifests to deploy
extraObjects: []

# specify the plugin to install
plugins:
enabled: true
installList: ["https://github.com/BionIT/google-analytics-plugin/releases/download/2.4.1/googleAnalytics-2.4.1.zip"]
2 changes: 1 addition & 1 deletion config/playground/helm/searchapps/helm-opensearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ secretMounts: []
hostAliases: []

image:
repository: "opensearchplayground/opensearch"
repository: "opensearchproject/opensearch"
# override image tag, which is .Chart.AppVersion by default
tag: "latest"
pullPolicy: "Always"
Expand Down