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

perf: support set elasticsearch config #69

Merged
merged 1 commit into from
Jun 19, 2024
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
6 changes: 6 additions & 0 deletions templates/appstore-console.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ spec:
spec:
containers:
- env:
- name: ES_URL
value: "{{ .Values.Cluster.elasticsearch.host }}"
- name: ES_USERNAME
value: "{{ .Values.Cluster.elasticsearch.username }}"
- name: ES_PASSWORD
value: "{{ .Values.Cluster.elasticsearch.password }}"
- name: DB_TYPE
value: mysql
- name: MYSQL_HOST
Expand Down
6 changes: 6 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ Cluster:
port: 3306
username: admin

# Rainbond ElasticSearch
elasticsearch:
host: "http://192.168.0.1:9200"
username: "elastic"
password: "elastic"

# External gateway IP address
# gatewayIngressIPs: 192.168.0.1

Expand Down
Loading