-
Notifications
You must be signed in to change notification settings - Fork 0
/
cic-httpd-v1.yaml
35 lines (35 loc) · 934 Bytes
/
cic-httpd-v1.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
apiVersion: v1
kind: Pod
metadata:
name: httpd-cic
labels:
app: httpd-cic
spec:
serviceAccountName: cpx
containers:
- name: httpd-cic
image: "quay.io/citrix/citrix-k8s-ingress-controller:1.8.19"
env:
# Set NetScaler NSIP/SNIP, SNIP in case of HA (mgmt has to be enabled)
- name: "NS_IP"
value: "Edit this NSIP"
# Set username for Nitro
# Set log level
- name: "NS_ENABLE_MONITORING"
value: "NO"
- name: "NS_USER"
value: "nsroot"
- name: "NS_PASSWORD"
value: "nsroot"
- name: "EULA"
value: "yes"
- name: "LOGLEVEL"
value: "DEBUG"
- name: "NS_APPS_NAME_PREFIX"
value: "unified"
args:
- --ingress-classes
vpx
- --feature-node-watch
false
imagePullPolicy: IfNotPresent