console-config.yaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apiVersion: webconsole.config.openshift.io/v1
  2. kind: WebConsoleConfiguration
  3. clusterInfo:
  4. consolePublicURL: https://127.0.0.1:8443/console/
  5. loggingPublicURL: ""
  6. logoutPublicURL: ""
  7. masterPublicURL: https://127.0.0.1:8443
  8. metricsPublicURL: ""
  9. # TODO: The new extensions properties cannot be set until
  10. # origin-web-console-server has been updated with the API changes since
  11. # `extensions` in the old asset config was an array.
  12. #extensions:
  13. # scriptURLs: []
  14. # stylesheetURLs: []
  15. # properties: null
  16. features:
  17. inactivityTimeoutMinutes: 0
  18. servingInfo:
  19. bindAddress: 0.0.0.0:8443
  20. bindNetwork: tcp4
  21. certFile: /var/serving-cert/tls.crt
  22. clientCA: ""
  23. keyFile: /var/serving-cert/tls.key
  24. maxRequestsInFlight: 0
  25. namedCertificates: null
  26. requestTimeoutSeconds: 0
  27. # START deprecated properties
  28. # These properties have been renamed and will be removed from the install
  29. # in a future pull. Keep both the old and new properties for now so that
  30. # the install is not broken while the origin-web-console image is updated.
  31. extensionDevelopment: false
  32. extensionProperties: null
  33. extensionScripts: null
  34. extensionStylesheets: null
  35. extensions: null
  36. loggingPublicURL: ""
  37. logoutURL: ""
  38. masterPublicURL: https://127.0.0.1:8443
  39. metricsPublicURL: ""
  40. publicURL: https://127.0.0.1:8443/console/
  41. # END deprecated properties