Skip to content

Commit

Permalink
Merge pull request #4 from calyptia/tls
Browse files Browse the repository at this point in the history
make tls a default value
  • Loading branch information
niedbalski authored Nov 17, 2021
2 parents 4291f8e + 7c0916f commit 632aca0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/aggregator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.8
version: 0.1.9

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions charts/aggregator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ spec:
- name: AGGREGATOR_FLUENTBIT_CLOUD_URL
value: {{ .Values.api_url | default "https://cloud-api.calyptia.com/" }}
- name: AGGREGATOR_FLUENTBIT_TLS_VERIFY
value: {{ .Values.api_tls_verify | default "on" }}
value: "on"
- name: AGGREGATOR_FLUENTBIT_TLS
value: {{ .Values.api_tls | default "on" }}
value: "on"
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
Expand Down
2 changes: 0 additions & 2 deletions charts/aggregator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ replicaCount: 1
machine_id: ""
project_token: ""
api_url: "https://cloud-api.calyptia.com/"
api_tls: "on"
api_tls_verify: "on"

image:
repository: ghcr.io/calyptia/aggregator
Expand Down

0 comments on commit 632aca0

Please sign in to comment.