32
32
# - "ADMIN_ONLY" will start up only the administration server (no managed servers will be started)
33
33
# - "IF_NEEDED" will start all non-clustered servers, including the administration server and clustered servers up to the replica count
34
34
serverStartPolicy : " %SERVER_START_POLICY%"
35
+ env :
36
+ - name : JAVA_OPTIONS
37
+ value : " %JAVA_OPTIONS%"
38
+ - name : USER_MEM_ARGS
39
+ value : " -Xms64m -Xmx256m "
40
+ volumes :
41
+ - name : runtime-properties
42
+ hostPath :
43
+ path : " %RUNTIME_PROPERTIES%"
44
+ volumeMounts :
45
+ - mountPath : " /u01/oracle/properties"
46
+ name : runtime-properties
35
47
# adminServer is used to configure the desired behavior for starting the administration server.
36
48
adminServer :
37
49
# serverStartState legal values are "RUNNING" or "ADMIN"
@@ -44,35 +56,11 @@ spec:
44
56
%EXPOSE_T3_CHANNEL_PREFIX%exportedNetworkAccessPoints:
45
57
%EXPOSE_T3_CHANNEL_PREFIX% T3Channel: {}
46
58
# an (optional) list of environment variable to be set on the server
47
- env :
48
- - name : JAVA_OPTIONS
49
- value : " %JAVA_OPTIONS%"
50
- - name : USER_MEM_ARGS
51
- value : " -Xms64m -Xmx256m "
52
- volumes :
53
- - name : runtime-properties
54
- hostPath :
55
- path : " %RUNTIME_PROPERTIES%"
56
- volumeMounts :
57
- - name : runtime-properties
58
- mountPath : " /u01/oracle/properties"
59
59
# clusters is used to configure the desired behavior for starting member servers of a cluster.
60
60
# If you use this entry, then the rules will be applied to ALL servers that are members of the named clusters.
61
61
clusters :
62
62
%CLUSTER_NAME%:
63
63
serverStartState : " RUNNING"
64
64
replicas : %INITIAL_MANAGED_SERVER_REPLICAS%
65
- env :
66
- - name : JAVA_OPTIONS
67
- value : " %JAVA_OPTIONS%"
68
- - name : USER_MEM_ARGS
69
- value : " -Xms64m -Xmx256m "
70
- volumes :
71
- - name : runtime-properties
72
- hostPath :
73
- path : " %RUNTIME_PROPERTIES%"
74
- volumeMounts :
75
- - name : runtime-properties
76
- mountPath : " /u01/oracle/properties"
77
65
# The number of managed servers to start from clusters not listed in clusters
78
66
# replicas: 1
0 commit comments