mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 09:16:40 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes - **New Features** - Introduced a new variable `$host` for improved configuration management. - Added a `valuesFrom` section to the `dashboard` release, allowing external value sourcing. - Enhanced Keycloak integration with new client scopes, roles, and configurations for Kubeapps. - Added support for custom pod specifications and environment variables in Redis configurations. - Introduced a new Kubernetes configuration file for managing access to resources via Role and Secret. - Updated image versions across various components to ensure compatibility and leverage new features. - **Bug Fixes** - Implemented error handling to ensure required configurations are present. - Improved handling of request headers for the `/logos` endpoint in Nginx configuration. - Adjusted security context configurations to enhance deployment security. - **Documentation** - Updated configuration files to reflect new dependencies and structures for better clarity. - Enhanced README documentation with upgrade instructions and security defaults. - Expanded notes on handling persistent volumes and data migration during upgrades. These enhancements improve the overall functionality and reliability of the platform. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
16 lines
734 B
Diff
16 lines
734 B
Diff
diff --git a/packages/system/dashboard/charts/kubeapps/templates/frontend/configmap.yaml b/packages/system/dashboard/charts/kubeapps/templates/frontend/configmap.yaml
|
|
index d43f521..31ff7d5 100644
|
|
--- a/packages/system/dashboard/charts/kubeapps/templates/frontend/configmap.yaml
|
|
+++ b/packages/system/dashboard/charts/kubeapps/templates/frontend/configmap.yaml
|
|
@@ -136,4 +136,10 @@ data:
|
|
proxy_pass {{ printf "http://%s:%d" (include "kubeapps.dashboard.fullname" .) (int .Values.dashboard.service.ports.http) }};
|
|
}
|
|
{{- end }}
|
|
+
|
|
+ location /logos {
|
|
+ # Add the Authorization header if exists
|
|
+ proxy_set_header Cookie "";
|
|
+ proxy_pass http://cozystack.cozy-system.svc:80;
|
|
+ }
|
|
}
|