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
Add input/output sanitization and security improvements
* Change operator logger from development to production mode to avoid
leaking heavy stack traces that can contain internal information on
warning+ log levels. Development logs can still be enabled using the
--zap-devel argument.
* Add RunAsNonRoot and drop all Linux capabilities on the Postgres
container.
* Add kubebuilder validation constraints:
- URL pattern on LLMEndpoint
- Format pattern on OGXLogLevel
- minimum=1 on MaxTokensForResponse
* Add HTTP security headers to the console plugin nginx config
(X-Frame-Options, X-Content-Type-Options, Referrer-Policy)
Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com>
// Log level configuration for the OGX/llama-stack container. Supports standard levels (INFO, DEBUG) or fine-grained control using format "component=level,component=level" (e.g., "core=debug,providers=info").
121
122
OGXLogLevelstring`json:"ogxLogLevel,omitempty"`
@@ -138,6 +139,7 @@ type LoggingConfig struct {
138
139
// OpenStackLightspeedCore defines the desired state of OpenStackLightspeed
0 commit comments