You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add gunicorn_access_logformat field to Api and Content specs
* Pass gunicorn_access_logformat as env var and use in container args
* Add gunicorn_access_logformat field to Api and Content specs
* Add changelog
* Update controller_test.go with new env vars and args
* Run `make manifests` and `make bundle` to update CRDs
closes#1564
Copy file name to clipboardExpand all lines: controllers/repo_manager/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ Api defines desired state of pulpcore-api resources
34
34
| topology_spread_constraints | Topology rule(s) for the pods. |[]corev1.TopologySpreadConstraint | false |
35
35
| gunicorn_timeout | The timeout for the gunicorn process. Default: 90 | int | false |
36
36
| gunicorn_workers | The number of gunicorn workers to use for the api. Default: 2 | int | false |
37
+
| gunicorn_access_logformat | For the gunicorn --access-logformat CLI command used to format the access logs. | string | false |
37
38
| resource_requirements | Resource requirements for the pulp api container. | corev1.ResourceRequirements | false |
38
39
| readinessProbe | Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. |*corev1.Probe | false |
39
40
| livenessProbe | Periodic probe of container liveness. Container will be restarted if the probe fails. |*corev1.Probe | false |
@@ -85,6 +86,7 @@ Content defines desired state of pulpcore-content resources
85
86
| topology_spread_constraints | Topology rule(s) for the pods. |[]corev1.TopologySpreadConstraint | false |
86
87
| gunicorn_timeout | The timeout for the gunicorn process. Default: 90 | int | false |
87
88
| gunicorn_workers | The number of gunicorn workers to use for the api. Default: 2 | int | false |
89
+
| gunicorn_access_logformat | For the gunicorn --access-logformat CLI command used to format the access logs. | string | false |
88
90
| readinessProbe | Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. |*corev1.Probe | false |
89
91
| livenessProbe | Periodic probe of container liveness. Container will be restarted if the probe fails. |*corev1.Probe | false |
90
92
| pdb | PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods |*policy.PodDisruptionBudgetSpec | false |
0 commit comments