-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsigsci-values.yaml
37 lines (32 loc) · 1.11 KB
/
sigsci-values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
controller:
# Replaces the default nginx-controller image with a custom image that contains the Signal Sciences nginx Module
image:
repository: signalsciences/sigsci-nginx-ingress-controller
tag: "1.11.3"
pullPolicy: IfNotPresent
# Load module and set sigsci_agent_host
config:
main-snippet: load_module /usr/lib/nginx/modules/ngx_http_sigsci_module.so;
http-snippet: sigsci_agent_host unix:/sigsci/tmp/sigsci.sock;
# Loads sidecar Signal Sciences Agent
extraContainers:
- name: sigsci-agent
image: signalsciences/sigsci-agent:latest
volumeMounts:
- name: sigsci-temp
mountPath: /sigsci/tmp
# Sets Signal Sciences Agent keys
env:
- name: SIGSCI_RPC_ADDRESS
value: unix:/sigsci/tmp/sigsci.sock
- name: SIGSCI_ACCESSKEYID
value: SET_ME
- name: SIGSCI_SECRETACCESSKEY
value: SET_ME
# Mounts shared volume for sigsci.sock file
extraVolumeMounts:
- name: sigsci-temp
mountPath: /sigsci/tmp
extraVolumes:
- name: sigsci-temp
emptyDir: {}