diff --git a/charts/ocis/docs/values-desc-table.adoc b/charts/ocis/docs/values-desc-table.adoc index ff773a4fd..e59e35402 100644 --- a/charts/ocis/docs/values-desc-table.adoc +++ b/charts/ocis/docs/values-desc-table.adoc @@ -30,6 +30,12 @@ a| [subs=-attributes] a| [subs=-attributes] `3` | Sets minimum replicas for autoscaling. +| debug.profiling +a| [subs=-attributes] ++bool+ +a| [subs=-attributes] +`false` +| Profiling enables the http://:/debug/pprof endpoint to inspect various Go runtime internals. You can use the endpoint on your machine by forwarding the port, eg: `kubectl port-forward -n ocis pod/auth-basic-8587dc9d64-fs24l 9147:9147` and then accessing the port on https://localhost:9147/debug/pprof or using the pprof command line tool: `go tool pprof -web http://localhost:9147/debug/pprof/symbol\?seconds\=10` | deploymentStrategy a| [subs=-attributes] +object+ diff --git a/charts/ocis/docs/values.adoc.yaml b/charts/ocis/docs/values.adoc.yaml index 65b7f001e..1d740ef4b 100644 --- a/charts/ocis/docs/values.adoc.yaml +++ b/charts/ocis/docs/values.adoc.yaml @@ -23,6 +23,13 @@ logging: # Not recommended for production installations. color: "false" +# Debug settings for the oCIS service +debug: + # -- Profiling enables the http://:/debug/pprof endpoint to inspect various Go runtime internals. + # You can use the endpoint on your machine by forwarding the port, eg: `kubectl port-forward -n ocis pod/auth-basic-8587dc9d64-fs24l 9147:9147` + # and then accessing the port on https://localhost:9147/debug/pprof or using the pprof command line tool: `go tool pprof -web http://localhost:9147/debug/pprof/symbol\?seconds\=10` + profiling: false + # -- Deployment strategy. deploymentStrategy: type: RollingUpdate