CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/kubernetes/lucee/values.yaml
Views: 1904
1
# Default values for lucee.
2
# This is a YAML-formatted file.
3
# Declare variables to be passed into your templates.
4
5
replicaCount: 1
6
7
image:
8
repository: lucee/lucee
9
pullPolicy: IfNotPresent
10
containerPort: 8888
11
tag: 5.3.7.43
12
13
notes:
14
hostPort: 9002
15
address: 0.0.0.0
16
17
imagePullSecrets: []
18
nameOverride: ""
19
fullnameOverride: ""
20
21
serviceAccount:
22
create: true
23
24
# Annotations to add to the service account
25
annotations: {}
26
# The name of the service account to use.
27
# If not set and create is true, a name is generated using the fullname template
28
name: ""
29
30
privileges:
31
# Override the default cluster role (useServiceAccount must be true for this setting to be effective)
32
bindClusterRoleOverride: "lucee-no-access" # Alternatively lucee-all-access
33
34
#
35
# Privileges related to node hosting metasploit Pod
36
# See: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
37
podSecurityContext: {}
38
# fsGroup: 2000
39
# container security context
40
# securityContext: {}
41
# allowPrivilegeEscalation: false
42
# capabilities:
43
# add:
44
# - NET_BIND_SERVICE
45
# drop:
46
# - all
47
# runAsNonRoot: true
48
# runAsUser: 1000
49
# runAsGroup: 1000
50
51
52
podAnnotations: {}
53
54
podSecurityContext: {}
55
# fsGroup: 2000
56
57
securityContext: {}
58
# capabilities:
59
# drop:
60
# - ALL
61
# readOnlyRootFilesystem: true
62
# runAsNonRoot: true
63
# runAsUser: 1000
64
65
service:
66
type: ClusterIP
67
port: 9002
68
69
ingress:
70
enabled: false
71
className: ""
72
annotations: {}
73
# kubernetes.io/ingress.class: nginx
74
# kubernetes.io/tls-acme: "true"
75
hosts:
76
- host: lucee.local
77
paths:
78
- path: /
79
pathType: ImplementationSpecific
80
tls: []
81
# - secretName: chart-example-tls
82
# hosts:
83
# - chart-example.local
84
85
resources: {}
86
# We usually recommend not to specify default resources and to leave this as a conscious
87
# choice for the user. This also increases chances charts run on environments with little
88
# resources, such as Minikube. If you do want to specify resources, uncomment the following
89
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
90
# limits:
91
# cpu: 100m
92
# memory: 128Mi
93
# requests:
94
# cpu: 100m
95
# memory: 128Mi
96
97
autoscaling:
98
enabled: false
99
minReplicas: 1
100
maxReplicas: 100
101
targetCPUUtilizationPercentage: 80
102
# targetMemoryUtilizationPercentage: 80
103
104
nodeSelector: {}
105
106
tolerations: []
107
108
affinity: {}
109
110