@@ -670,9 +670,6 @@ spec:
670
670
# oneOf:
671
671
# - pattern: '^delete$'
672
672
# - pattern: '^retain$'
673
- annotationCheck :
674
- type : string
675
- pattern : ^(true|false)$
676
673
defaultHealthCheck :
677
674
type : string
678
675
pattern : ^(true|false)$
@@ -686,6 +683,44 @@ spec:
686
683
type : string
687
684
appns :
688
685
type : string
686
+ selectors :
687
+ type : object
688
+ properties :
689
+ pods :
690
+ items :
691
+ properties :
692
+ names :
693
+ type : string
694
+ namespace :
695
+ type : string
696
+ required :
697
+ - names
698
+ - namespace
699
+ type : object
700
+ type : array
701
+ workloads :
702
+ items :
703
+ properties :
704
+ kind :
705
+ type : string
706
+ pattern : ^(^$|deployment|statefulset|daemonset|deploymentconfig|rollout)$
707
+ labels :
708
+ type : string
709
+ names :
710
+ type : string
711
+ namespace :
712
+ type : string
713
+ oneOf :
714
+ - required : [ names ]
715
+ - required : [ labels ]
716
+ required :
717
+ - kind
718
+ - namespace
719
+ type : object
720
+ type : array
721
+ oneOf :
722
+ - required : [ pods ]
723
+ - required : [ workloads ]
689
724
auxiliaryAppInfo :
690
725
type : string
691
726
engineState :
@@ -698,6 +733,180 @@ spec:
698
733
components :
699
734
type : object
700
735
properties :
736
+ sidecar :
737
+ type : array
738
+ items :
739
+ type : object
740
+ properties :
741
+ env :
742
+ description : ENV contains ENV passed to the sidecar container
743
+ items :
744
+ description : EnvVar represents an environment variable
745
+ present in a Container.
746
+ properties :
747
+ name :
748
+ description : Name of the environment variable. Must
749
+ be a C_IDENTIFIER.
750
+ type : string
751
+ value :
752
+ description : ' Variable references $(VAR_NAME) are
753
+ expanded using the previous defined environment
754
+ variables in the container and any service environment
755
+ variables. If a variable cannot be resolved, the
756
+ reference in the input string will be unchanged.
757
+ The $(VAR_NAME) syntax can be escaped with a double
758
+ $$, ie: $$(VAR_NAME). Escaped references will never
759
+ be expanded, regardless of whether the variable
760
+ exists or not. Defaults to "".'
761
+ type : string
762
+ valueFrom :
763
+ description : Source for the environment variable's
764
+ value. Cannot be used if value is not empty.
765
+ properties :
766
+ configMapKeyRef :
767
+ description : Selects a key of a ConfigMap.
768
+ properties :
769
+ key :
770
+ description : The key to select.
771
+ type : string
772
+ name :
773
+ description : ' Name of the referent. More info:
774
+ https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
775
+ TODO: Add other useful fields. apiVersion,
776
+ kind, uid?'
777
+ type : string
778
+ optional :
779
+ description : Specify whether the ConfigMap
780
+ or its key must be defined
781
+ type : boolean
782
+ required :
783
+ - key
784
+ type : object
785
+ fieldRef :
786
+ description : ' Selects a field of the pod: supports
787
+ metadata.name, metadata.namespace, `metadata.labels['' <KEY>'' ]`,
788
+ `metadata.annotations['' <KEY>'' ]`, spec.nodeName,
789
+ spec.serviceAccountName, status.hostIP, status.podIP,
790
+ status.podIPs.'
791
+ properties :
792
+ apiVersion :
793
+ description : Version of the schema the FieldPath
794
+ is written in terms of, defaults to "v1".
795
+ type : string
796
+ fieldPath :
797
+ description : Path of the field to select in
798
+ the specified API version.
799
+ type : string
800
+ required :
801
+ - fieldPath
802
+ type : object
803
+ resourceFieldRef :
804
+ description : ' Selects a resource of the container:
805
+ only resources limits and requests (limits.cpu,
806
+ limits.memory, limits.ephemeral-storage, requests.cpu,
807
+ requests.memory and requests.ephemeral-storage)
808
+ are currently supported.'
809
+ properties :
810
+ containerName :
811
+ description : ' Container name: required for
812
+ volumes, optional for env vars'
813
+ type : string
814
+ divisor :
815
+ anyOf :
816
+ - type : integer
817
+ - type : string
818
+ description : Specifies the output format of
819
+ the exposed resources, defaults to "1"
820
+ pattern : ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
821
+ x-kubernetes-int-or-string : true
822
+ resource :
823
+ description : ' Required: resource to select'
824
+ type : string
825
+ required :
826
+ - resource
827
+ type : object
828
+ secretKeyRef :
829
+ description : Selects a key of a secret in the
830
+ pod's namespace
831
+ properties :
832
+ key :
833
+ description : The key of the secret to select
834
+ from. Must be a valid secret key.
835
+ type : string
836
+ name :
837
+ description : ' Name of the referent. More info:
838
+ https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
839
+ TODO: Add other useful fields. apiVersion,
840
+ kind, uid?'
841
+ type : string
842
+ optional :
843
+ description : Specify whether the Secret or
844
+ its key must be defined
845
+ type : boolean
846
+ required :
847
+ - key
848
+ type : object
849
+ type : object
850
+ required :
851
+ - name
852
+ type : object
853
+ type : array
854
+ envFrom :
855
+ description : EnvFrom for the sidecar container
856
+ items :
857
+ description : EnvFromSource represents the source of a
858
+ set of ConfigMaps
859
+ properties :
860
+ configMapRef :
861
+ description : The ConfigMap to select from
862
+ properties :
863
+ name :
864
+ description : ' Name of the referent. More info:
865
+ https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
866
+ TODO: Add other useful fields. apiVersion, kind,
867
+ uid?'
868
+ type : string
869
+ optional :
870
+ description : Specify whether the ConfigMap must
871
+ be defined
872
+ type : boolean
873
+ type : object
874
+ prefix :
875
+ description : An optional identifier to prepend to
876
+ each key in the ConfigMap. Must be a C_IDENTIFIER.
877
+ type : string
878
+ secretRef :
879
+ description : The Secret to select from
880
+ properties :
881
+ name :
882
+ description : ' Name of the referent. More info:
883
+ https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
884
+ TODO: Add other useful fields. apiVersion, kind,
885
+ uid?'
886
+ type : string
887
+ optional :
888
+ description : Specify whether the Secret must be
889
+ defined
890
+ type : boolean
891
+ type : object
892
+ type : object
893
+ type : array
894
+ image :
895
+ type : string
896
+ imagePullPolicy :
897
+ type : string
898
+ secrets :
899
+ items :
900
+ properties :
901
+ mountPath :
902
+ type : string
903
+ name :
904
+ type : string
905
+ required :
906
+ - mountPath
907
+ - name
908
+ type : object
909
+ type : array
701
910
runner :
702
911
x-kubernetes-preserve-unknown-fields : true
703
912
type : object
0 commit comments