You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB

  1. ---
  2. registry_namespace: "kube-system"
  3. registry_storage_class: ""
  4. registry_storage_access_mode: "ReadWriteOnce"
  5. registry_disk_size: "10Gi"
  6. registry_port: 5000
  7. registry_replica_count: 1
  8. # type of service: ClusterIP, LoadBalancer or NodePort
  9. registry_service_type: "ClusterIP"
  10. # you can specify your cluster IP address when registry_service_type is ClusterIP
  11. registry_service_cluster_ip: ""
  12. # you can specify your cloud provider assigned loadBalancerIP when registry_service_type is LoadBalancer
  13. registry_service_loadbalancer_ip: ""
  14. # annotations for managing Cloud Load Balancers
  15. registry_service_annotations: {}
  16. # you can specify the node port when registry_service_type is NodePort
  17. registry_service_nodeport: ""
  18. # name of kubernetes secret for registry TLS certs
  19. registry_tls_secret: ""
  20. registry_htpasswd: ""
  21. # registry configuration
  22. # see: https://docs.docker.com/registry/configuration/#list-of-configuration-options
  23. registry_config:
  24. version: 0.1
  25. log:
  26. fields:
  27. service: registry
  28. storage:
  29. cache:
  30. blobdescriptor: inmemory
  31. http:
  32. addr: :{{ registry_port }}
  33. headers:
  34. X-Content-Type-Options: [nosniff]
  35. health:
  36. storagedriver:
  37. enabled: true
  38. interval: 10s
  39. threshold: 3
  40. registry_ingress_annotations: {}
  41. registry_ingress_host: ""
  42. # name of kubernetes secret for registry ingress TLS certs
  43. registry_ingress_tls_secret: ""