File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- # config for Minikube with disabled TLS
1+ # config with disabled TLS (e.g. for Minikube)
22vector :
33 customConfig :
44 sinks :
55 better_stack_http_sink :
6+ uri : " https://$INGESTING_HOST/"
67 auth :
7- token : $SOURCE_TOKEN
8+ strategy : " bearer"
9+ token : " $SOURCE_TOKEN"
810 better_stack_http_metrics_sink :
11+ uri : " https://$INGESTING_HOST/metrics"
912 auth :
10- token : $SOURCE_TOKEN
13+ strategy : " bearer"
14+ token : " $SOURCE_TOKEN"
1115 sources :
1216 better_stack_kubernetes_metrics_nodes :
1317 tls :
Original file line number Diff line number Diff line change 2626 - name : 1. Add Helm repository
2727 run : helm repo add betterstack-logs https://betterstackhq.github.io/logs-helm-chart && helm repo update
2828 - name : 2. Set up Helm chart
29- run : sed 's/$SOURCE_TOKEN/${{ secrets.HELM_E2E_TEST_SOURCE_TOKEN }}/g' .github/helm-values-template.yaml > values.yaml
29+ run : sed -e 's/$SOURCE_TOKEN/${{ secrets.HELM_E2E_TEST_SOURCE_TOKEN }}/g' -e 's/$INGESTING_HOST/${{ secrets.HELM_E2E_TEST_INGESTING_HOST }}/g' .github/helm-values-template.yaml > values.yaml
3030 - name : 3. Deploy the chart
3131 run : helm install betterstack-logs betterstack-logs/betterstack-logs -f values.yaml
3232
You can’t perform that action at this time.
0 commit comments