File tree Expand file tree Collapse file tree 8 files changed +20
-0
lines changed Expand file tree Collapse file tree 8 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,10 @@ properties:
212
212
default: []
213
213
description: "Allow-list of users that a Process/Task may use in addition to 'vcap'. The 'vcap' user is always permitted."
214
214
215
+ cc.allow_docker_root_user:
216
+ default: true
217
+ description: "Whether to allow the use of the 'root' and '0' user for a Process/Task of a docker lifecycle App."
218
+
215
219
cc.locket.host:
216
220
default: "locket.service.cf.internal"
217
221
description: "Hostname of the Locket server"
Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ default_app_disk_in_mb: <%= p("cc.default_app_disk_in_mb") %>
134
134
maximum_app_disk_in_mb: <%= p("cc.maximum_app_disk_in_mb") %>
135
135
instance_file_descriptor_limit: <%= p("cc.instance_file_descriptor_limit") %>
136
136
additional_allowed_process_users: <%= p("cc.additional_allowed_process_users") %>
137
+ allow_docker_root_user: <%= p("cc.allow_docker_root_user") %>
137
138
138
139
deployment_updater:
139
140
update_frequency_in_seconds: <%= p("deployment_updater.update_frequency_in_seconds") %>
Original file line number Diff line number Diff line change @@ -426,6 +426,10 @@ properties:
426
426
default: []
427
427
description: "Allow-list of users that a Process/Task may use in addition to 'vcap'. The 'vcap' user is always permitted."
428
428
429
+ cc.allow_docker_root_user:
430
+ default: true
431
+ description: "Whether to allow the use of the 'root' and '0' user for a Process/Task of a docker lifecycle App."
432
+
429
433
cc.newrelic.license_key:
430
434
default: ~
431
435
description: "The api key for NewRelic"
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ max_retained_deployments_per_app: <%= p("cc.max_retained_deployments_per_app") %
73
73
max_retained_builds_per_app: <%= p("cc.max_retained_builds_per_app") %>
74
74
max_retained_revisions_per_app: <%= p("cc.max_retained_revisions_per_app") %>
75
75
additional_allowed_process_users: <%= p("cc.additional_allowed_process_users") %>
76
+ allow_docker_root_user: <%= p("cc.allow_docker_root_user") %>
76
77
77
78
default_app_log_rate_limit_in_bytes_per_second: <%= p("cc.default_app_log_rate_limit_in_bytes_per_second") %>
78
79
Original file line number Diff line number Diff line change @@ -848,6 +848,10 @@ properties:
848
848
default: []
849
849
description: "Allow-list of users that a Process/Task may use in addition to 'vcap'. The 'vcap' user is always permitted."
850
850
851
+ cc.allow_docker_root_user:
852
+ default: true
853
+ description: "Whether to allow the use of the 'root' and '0' user for a Process/Task of a docker lifecycle App."
854
+
851
855
cc.default_app_log_rate_limit_in_bytes_per_second:
852
856
default: -1
853
857
description: "Default application log rate limit"
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ default_app_memory: <%= p("cc.default_app_memory") %>
129
129
default_app_disk_in_mb: <%= p("cc.default_app_disk_in_mb") %>
130
130
maximum_app_disk_in_mb: <%= p("cc.maximum_app_disk_in_mb") %>
131
131
additional_allowed_process_users: <%= p("cc.additional_allowed_process_users") %>
132
+ allow_docker_root_user: <%= p("cc.allow_docker_root_user") %>
132
133
133
134
default_app_log_rate_limit_in_bytes_per_second: <%= p("cc.default_app_log_rate_limit_in_bytes_per_second") %>
134
135
Original file line number Diff line number Diff line change @@ -368,6 +368,10 @@ properties:
368
368
default: []
369
369
description: "Allow-list of users that a Process/Task may use in addition to 'vcap'. The 'vcap' user is always permitted."
370
370
371
+ cc.allow_docker_root_user:
372
+ default: true
373
+ description: "Whether to allow the use of the 'root' and '0' user for a Process/Task of a docker lifecycle App."
374
+
371
375
cc.allow_app_ssh_access:
372
376
default: true
373
377
description: "Allow users to change the value of the app-level allow_ssh attribute"
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ default_app_memory: <%= p("cc.default_app_memory") %>
64
64
default_app_disk_in_mb: <%= p("cc.default_app_disk_in_mb") %>
65
65
maximum_app_disk_in_mb: <%= p("cc.maximum_app_disk_in_mb") %>
66
66
additional_allowed_process_users: <%= p("cc.additional_allowed_process_users") %>
67
+ allow_docker_root_user: <%= p("cc.allow_docker_root_user") %>
67
68
68
69
instance_file_descriptor_limit: <%= p("cc.instance_file_descriptor_limit") %>
69
70
You can’t perform that action at this time.
0 commit comments