@@ -543,6 +543,13 @@ portal:
543543 serviceAnnotations : {}
544544 # # The priority class to run the pod as
545545 priorityClassName :
546+ # containers to be run before the controller's container starts.
547+ initContainers : []
548+ # Example:
549+ #
550+ # - name: wait
551+ # image: busybox
552+ # command: [ 'sh', '-c', "sleep 20" ]
546553
547554core :
548555 image :
@@ -580,6 +587,13 @@ core:
580587 serviceAnnotations : {}
581588 # # The priority class to run the pod as
582589 priorityClassName :
590+ # containers to be run before the controller's container starts.
591+ initContainers : []
592+ # Example:
593+ #
594+ # - name: wait
595+ # image: busybox
596+ # command: [ 'sh', '-c', "sleep 20" ]
583597 # # User settings configuration json string
584598 configureUserSettings :
585599 # The provider for updating project quota(usage), there are 2 options, redis or db.
@@ -654,6 +668,13 @@ jobservice:
654668 podLabels : {}
655669 # # The priority class to run the pod as
656670 priorityClassName :
671+ # containers to be run before the controller's container starts.
672+ initContainers : []
673+ # Example:
674+ #
675+ # - name: wait
676+ # image: busybox
677+ # command: [ 'sh', '-c', "sleep 20" ]
657678 maxJobWorkers : 10
658679 # The logger for jobs: "file", "database" or "stdout"
659680 jobLoggers :
@@ -719,6 +740,13 @@ registry:
719740 podLabels : {}
720741 # # The priority class to run the pod as
721742 priorityClassName :
743+ # containers to be run before the controller's container starts.
744+ initContainers : []
745+ # Example:
746+ #
747+ # - name: wait
748+ # image: busybox
749+ # command: [ 'sh', '-c', "sleep 20" ]
722750 # Secret is used to secure the upload state from client
723751 # and registry storage backend.
724752 # See: https://github.com/distribution/distribution/blob/main/docs/configuration.md#http
@@ -796,6 +824,13 @@ trivy:
796824 podLabels : {}
797825 # # The priority class to run the pod as
798826 priorityClassName :
827+ # containers to be run before the controller's container starts.
828+ initContainers : []
829+ # Example:
830+ #
831+ # - name: wait
832+ # image: busybox
833+ # command: [ 'sh', '-c', "sleep 20" ]
799834 # debugMode the flag to enable Trivy debug mode with more verbose scanning log
800835 debugMode : false
801836 # vulnType a comma-separated list of vulnerability types. Possible values are `os` and `library`.
@@ -873,6 +908,13 @@ database:
873908 affinity : {}
874909 # # The priority class to run the pod as
875910 priorityClassName :
911+ # containers to be run before the controller's container starts.
912+ extrInitContainers : []
913+ # Example:
914+ #
915+ # - name: wait
916+ # image: busybox
917+ # command: [ 'sh', '-c', "sleep 20" ]
876918 # The initial superuser password for internal database
877919 password : " changeit"
878920 # The size limit for Shared memory, pgSQL use it for shared_buffer
@@ -940,6 +982,13 @@ redis:
940982 affinity : {}
941983 # # The priority class to run the pod as
942984 priorityClassName :
985+ # containers to be run before the controller's container starts.
986+ initContainers : []
987+ # Example:
988+ #
989+ # - name: wait
990+ # image: busybox
991+ # command: [ 'sh', '-c', "sleep 20" ]
943992 # # jobserviceDatabaseIndex defaults to "1"
944993 # # registryDatabaseIndex defaults to "2"
945994 # # trivyAdapterIndex defaults to "5"
0 commit comments