Skip to content

Commit aaf3ecc

Browse files
weltekialexellis
authored andcommitted
Add insecureTLS value to queue-worker chart
Signed-off-by: Han Verstraete (OpenFaaS Ltd) <[email protected]>
1 parent 8d8aef5 commit aaf3ecc

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

chart/queue-worker/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ helm upgrade slow-queue chart/queue-worker \
3636
| `initialRetryWait` | The amount of time to wait for the first retry | `10s` |
3737
| `httpRetryCodes` | A comma-separated list of HTTP status codes which the queue worker will retry when received from a function | `408,429,500,502,503,504` |
3838
| `gateway.host` | The host at which the OpenFaaS gateway can be reached | `http://gateway.openfaas` |
39+
| `insecureTLS` | Enable insecure tls for callbacks | `false` |
3940
| `gateway.port` | The port at which the OpenFaaS gateway can be reached | `8080` |
4041
| `nats.host` | The host at which the NATS JetStream serber can be reached | `nats.openfaas` |
4142
| `nats.port` | The part at which the NATS JetStream server can be reached | `4222` |

chart/queue-worker/templates/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ spec:
5757
value: "{{ .Values.maxInflight }}"
5858
- name: "upstream_timeout"
5959
value: "{{ .Values.upstreamTimeout }}"
60+
- name: "tls_insecure"
61+
value: "{{ .Values.insecureTLS }}"
6062

6163
- name: "max_retry_attempts"
6264
value: "{{ .Values.maxRetryAttempts }}"

chart/queue-worker/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ initialRetryWait: "10s"
1717
# 504 Gateway Timeout
1818
httpRetryCodes: "408,429,500,502,503,504"
1919

20+
insecureTLS: false
21+
2022
gateway:
2123
host: "http://gateway.openfaas"
2224
port: "8080"

0 commit comments

Comments
 (0)