Skip to content

Commit

Permalink
Option to give remote address identifier header (#12)
Browse files Browse the repository at this point in the history
* changes

* incrementing minor version
  • Loading branch information
nhegde-astra authored Nov 18, 2024
1 parent ad10e64 commit 85bbf0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/traffic-collector-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ 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.5.2
version: 0.6.0

# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.109.0.1"
appVersion: "v0.109.0.2"
icon: https://my.getastra.com/astra-logo.svg
3 changes: 2 additions & 1 deletion charts/traffic-collector-chart/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ data:
CLIENT_ID: {{ .Values.secret.clientId | b64enc | quote }}
CLIENT_SECRET: {{ .Values.secret.clientSecret | b64enc | quote }}
TOKEN_URL: {{ .Values.secret.tokenUrl | b64enc | quote }}
OTLP_ENDPOINT: {{ .Values.secret.otlpEndpoint | b64enc | quote }}
OTLP_ENDPOINT: {{ .Values.secret.otlpEndpoint | b64enc | quote }}
REMOTE_ADDR_IDENTIFIER_HEADER: {{ .Values.secret.remoteAddrIdentifierHeader | b64enc | quote }}
3 changes: 2 additions & 1 deletion charts/traffic-collector-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: docker.io/getastra/traffic-collector
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.109.0.1"
tag: "v0.109.0.2"

imagePullSecrets: []
# - name: "dockerhub-pull"
Expand All @@ -25,6 +25,7 @@ secret:
clientSecret: ""
tokenUrl: ""
otlpEndpoint: "collect-http.getastra.com:443"
remoteAddrIdentifierHeader: ""

podAnnotations: {}
podLabels: {}
Expand Down

0 comments on commit 85bbf0f

Please sign in to comment.