Files
service-catalog/manifests/helm/argo-cd/10.4.0/templates/crds/crd-applicationset.yaml
T
wbsong111 3aa69e5eda argo-cd: 10.4.0 (ArgoCD v3.5.1) 추가 + 배포 테스트 스크립트
k8s 1.33 에서 Deployment/ReplicaSet 에 추가된 .status.terminatingReplicas 를
ArgoCD v2.14.5(k8s 라이브러리 0.31/0.32)가 몰라, 클러스터가 1.33 이상이면
ServerSideApply=true 인 Application 이 전부 아래 오류로 죽는다.

  ComparisonError: failed to calculate diff: error calculating structured
  merge diff: .status.terminatingReplicas: field not declared in schema

v3.5.1 은 k8s 라이브러리 0.36.1 을 써서 해소된다. dev 클러스터(1.35.7+rke2r1)
에서 실제 발생·해소를 확인했다.

- manifests/helm/argo-cd/10.4.0/ 추가 (chart_updater 로 생성)
  - custom-values.yaml 을 실제 배포 기준(dipup argo-cd-values.yaml.tpl)에 맞춤:
    kong → apisix, server.extraArgs(--insecure), configs.cm/rbac 추가
  - configs.params.controller.resource.health.persist=true 지정 —
    ArgoCD v3.0 부터 리소스 health 를 CR 에 저장하지 않는 것이 기본값인데,
    dip-console-api 가 .status.resources[].health 를 읽는다
  - CUSTOM-README.md 는 현재 차트 기준 배포 가이드로 재작성.
    승계된 cert-manager 예시가 10.4.0 에 없는 구버전 스키마(hosts/tls 리스트)라
    Ingress 가 생성되지 않는 상태였던 것도 함께 수정
  - breaking_change_check: breaking=false (제거 26건이 전부 미사용 key)

- scripts/deploy-test/deploy-test-argo-cd.sh 신규
  같은 클러스터에 두 번째 argo-cd 를 띄우려면 crds.install=false 가 필수다 —
  CRD 3종이 클러스터 전역이고 운영 릴리스가 소유해 Helm 이 ownership 충돌로
  거부한다. Ingress 도 항상 끈다(운영과 host 충돌).
  검증: 워크로드 롤아웃 / health.persist / api 버전 / admin 로그인

- argo-cd/7.8.11/BUILD-README.md 에 `helm repo add argo ...` 추가
  chart_version_detector 가 이 한 줄을 정규식으로 뽑아 업스트림 레포를 정하는데,
  argo-cd 에는 없어서 신규 버전 자동 감지가 조용히 실패하고 있었다
  (repo: null → latest_version: null). CLAUDE.md 의 "변경 금지" 규정도
  실제 파싱 계약에 맞게 정정했다.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-19 11:28:21 +09:00

23350 lines
1.3 MiB
Plaintext

{{- if .Values.crds.install }}
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
{{- if .Values.crds.keep }}
"helm.sh/resource-policy": keep
{{- end }}
{{- with .Values.crds.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
app.kubernetes.io/name: applicationsets.argoproj.io
app.kubernetes.io/part-of: argocd
{{- with .Values.crds.additionalLabels }}
{{- toYaml . | nindent 4}}
{{- end }}
name: applicationsets.argoproj.io
spec:
group: argoproj.io
names:
kind: ApplicationSet
listKind: ApplicationSetList
plural: applicationsets
shortNames:
- appset
- appsets
singular: applicationset
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
applyNestedSelectors:
type: boolean
generators:
items:
properties:
clusterDecisionResource:
properties:
configMapRef:
type: string
labelSelector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
name:
type: string
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- configMapRef
type: object
clusters:
properties:
flatList:
type: boolean
selector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
git:
properties:
directories:
items:
properties:
exclude:
type: boolean
path:
type: string
required:
- path
type: object
type: array
files:
items:
properties:
exclude:
type: boolean
path:
type: string
required:
- path
type: object
type: array
pathParamPrefix:
type: string
repoURL:
type: string
requeueAfterSeconds:
format: int64
type: integer
revision:
type: string
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- repoURL
- revision
type: object
list:
properties:
elements:
items:
x-kubernetes-preserve-unknown-fields: true
type: array
elementsYaml:
type: string
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
type: object
matrix:
properties:
generators:
items:
properties:
clusterDecisionResource:
properties:
configMapRef:
type: string
labelSelector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
name:
type: string
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- configMapRef
type: object
clusters:
properties:
flatList:
type: boolean
selector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
git:
properties:
directories:
items:
properties:
exclude:
type: boolean
path:
type: string
required:
- path
type: object
type: array
files:
items:
properties:
exclude:
type: boolean
path:
type: string
required:
- path
type: object
type: array
pathParamPrefix:
type: string
repoURL:
type: string
requeueAfterSeconds:
format: int64
type: integer
revision:
type: string
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- repoURL
- revision
type: object
list:
properties:
elements:
items:
x-kubernetes-preserve-unknown-fields: true
type: array
elementsYaml:
type: string
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
type: object
matrix:
x-kubernetes-preserve-unknown-fields: true
merge:
x-kubernetes-preserve-unknown-fields: true
plugin:
properties:
configMapRef:
properties:
name:
type: string
required:
- name
type: object
input:
properties:
parameters:
additionalProperties:
x-kubernetes-preserve-unknown-fields: true
type: object
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- configMapRef
type: object
pullRequest:
properties:
azuredevops:
properties:
api:
type: string
labels:
items:
type: string
type: array
organization:
type: string
project:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- organization
- project
- repo
type: object
bitbucket:
properties:
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
owner:
type: string
repo:
type: string
required:
- owner
- repo
type: object
bitbucketServer:
properties:
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
project:
type: string
repo:
type: string
required:
- api
- project
- repo
type: object
continueOnRepoNotFoundError:
type: boolean
filters:
items:
properties:
branchMatch:
type: string
targetBranchMatch:
type: string
titleMatch:
type: string
type: object
type: array
gitea:
properties:
api:
type: string
insecure:
type: boolean
labels:
items:
type: string
type: array
owner:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- api
- owner
- repo
type: object
github:
properties:
api:
type: string
appSecretName:
type: string
labels:
items:
type: string
type: array
owner:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- owner
- repo
type: object
gitlab:
properties:
api:
type: string
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
labels:
items:
type: string
type: array
project:
type: string
pullRequestState:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- project
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
scmProvider:
properties:
awsCodeCommit:
properties:
allBranches:
type: boolean
region:
type: string
role:
type: string
tagFilters:
items:
properties:
key:
type: string
value:
type: string
required:
- key
type: object
type: array
type: object
azureDevOps:
properties:
accessTokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
allBranches:
type: boolean
api:
type: string
organization:
type: string
teamProject:
type: string
required:
- accessTokenRef
- organization
- teamProject
type: object
bitbucket:
properties:
allBranches:
type: boolean
appPasswordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
owner:
type: string
user:
type: string
required:
- appPasswordRef
- owner
- user
type: object
bitbucketServer:
properties:
allBranches:
type: boolean
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
project:
type: string
required:
- api
- project
type: object
cloneProtocol:
type: string
filters:
items:
properties:
branchMatch:
type: string
labelMatch:
type: string
pathsDoNotExist:
items:
type: string
type: array
pathsExist:
items:
type: string
type: array
repositoryMatch:
type: string
type: object
type: array
gitea:
properties:
allBranches:
type: boolean
api:
type: string
excludeArchivedRepos:
type: boolean
insecure:
type: boolean
owner:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- api
- owner
type: object
github:
properties:
allBranches:
type: boolean
api:
type: string
appSecretName:
type: string
excludeArchivedRepos:
type: boolean
organization:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- organization
type: object
gitlab:
properties:
allBranches:
type: boolean
api:
type: string
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
group:
type: string
includeArchivedRepos:
type: boolean
includeSharedProjects:
type: boolean
includeSubgroups:
type: boolean
insecure:
type: boolean
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
topic:
type: string
required:
- group
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
selector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
type: object
type: array
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
required:
- generators
type: object
merge:
properties:
generators:
items:
properties:
clusterDecisionResource:
properties:
configMapRef:
type: string
labelSelector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
name:
type: string
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- configMapRef
type: object
clusters:
properties:
flatList:
type: boolean
selector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
git:
properties:
directories:
items:
properties:
exclude:
type: boolean
path:
type: string
required:
- path
type: object
type: array
files:
items:
properties:
exclude:
type: boolean
path:
type: string
required:
- path
type: object
type: array
pathParamPrefix:
type: string
repoURL:
type: string
requeueAfterSeconds:
format: int64
type: integer
revision:
type: string
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- repoURL
- revision
type: object
list:
properties:
elements:
items:
x-kubernetes-preserve-unknown-fields: true
type: array
elementsYaml:
type: string
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
type: object
matrix:
x-kubernetes-preserve-unknown-fields: true
merge:
x-kubernetes-preserve-unknown-fields: true
plugin:
properties:
configMapRef:
properties:
name:
type: string
required:
- name
type: object
input:
properties:
parameters:
additionalProperties:
x-kubernetes-preserve-unknown-fields: true
type: object
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- configMapRef
type: object
pullRequest:
properties:
azuredevops:
properties:
api:
type: string
labels:
items:
type: string
type: array
organization:
type: string
project:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- organization
- project
- repo
type: object
bitbucket:
properties:
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
owner:
type: string
repo:
type: string
required:
- owner
- repo
type: object
bitbucketServer:
properties:
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
project:
type: string
repo:
type: string
required:
- api
- project
- repo
type: object
continueOnRepoNotFoundError:
type: boolean
filters:
items:
properties:
branchMatch:
type: string
targetBranchMatch:
type: string
titleMatch:
type: string
type: object
type: array
gitea:
properties:
api:
type: string
insecure:
type: boolean
labels:
items:
type: string
type: array
owner:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- api
- owner
- repo
type: object
github:
properties:
api:
type: string
appSecretName:
type: string
labels:
items:
type: string
type: array
owner:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- owner
- repo
type: object
gitlab:
properties:
api:
type: string
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
labels:
items:
type: string
type: array
project:
type: string
pullRequestState:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- project
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
scmProvider:
properties:
awsCodeCommit:
properties:
allBranches:
type: boolean
region:
type: string
role:
type: string
tagFilters:
items:
properties:
key:
type: string
value:
type: string
required:
- key
type: object
type: array
type: object
azureDevOps:
properties:
accessTokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
allBranches:
type: boolean
api:
type: string
organization:
type: string
teamProject:
type: string
required:
- accessTokenRef
- organization
- teamProject
type: object
bitbucket:
properties:
allBranches:
type: boolean
appPasswordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
owner:
type: string
user:
type: string
required:
- appPasswordRef
- owner
- user
type: object
bitbucketServer:
properties:
allBranches:
type: boolean
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
project:
type: string
required:
- api
- project
type: object
cloneProtocol:
type: string
filters:
items:
properties:
branchMatch:
type: string
labelMatch:
type: string
pathsDoNotExist:
items:
type: string
type: array
pathsExist:
items:
type: string
type: array
repositoryMatch:
type: string
type: object
type: array
gitea:
properties:
allBranches:
type: boolean
api:
type: string
excludeArchivedRepos:
type: boolean
insecure:
type: boolean
owner:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- api
- owner
type: object
github:
properties:
allBranches:
type: boolean
api:
type: string
appSecretName:
type: string
excludeArchivedRepos:
type: boolean
organization:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- organization
type: object
gitlab:
properties:
allBranches:
type: boolean
api:
type: string
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
group:
type: string
includeArchivedRepos:
type: boolean
includeSharedProjects:
type: boolean
includeSubgroups:
type: boolean
insecure:
type: boolean
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
topic:
type: string
required:
- group
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
selector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
type: object
type: array
mergeKeys:
items:
type: string
type: array
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
required:
- generators
- mergeKeys
type: object
plugin:
properties:
configMapRef:
properties:
name:
type: string
required:
- name
type: object
input:
properties:
parameters:
additionalProperties:
x-kubernetes-preserve-unknown-fields: true
type: object
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
required:
- configMapRef
type: object
pullRequest:
properties:
azuredevops:
properties:
api:
type: string
labels:
items:
type: string
type: array
organization:
type: string
project:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- organization
- project
- repo
type: object
bitbucket:
properties:
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
owner:
type: string
repo:
type: string
required:
- owner
- repo
type: object
bitbucketServer:
properties:
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
project:
type: string
repo:
type: string
required:
- api
- project
- repo
type: object
continueOnRepoNotFoundError:
type: boolean
filters:
items:
properties:
branchMatch:
type: string
targetBranchMatch:
type: string
titleMatch:
type: string
type: object
type: array
gitea:
properties:
api:
type: string
insecure:
type: boolean
labels:
items:
type: string
type: array
owner:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- api
- owner
- repo
type: object
github:
properties:
api:
type: string
appSecretName:
type: string
labels:
items:
type: string
type: array
owner:
type: string
repo:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- owner
- repo
type: object
gitlab:
properties:
api:
type: string
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
labels:
items:
type: string
type: array
project:
type: string
pullRequestState:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- project
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
scmProvider:
properties:
awsCodeCommit:
properties:
allBranches:
type: boolean
region:
type: string
role:
type: string
tagFilters:
items:
properties:
key:
type: string
value:
type: string
required:
- key
type: object
type: array
type: object
azureDevOps:
properties:
accessTokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
allBranches:
type: boolean
api:
type: string
organization:
type: string
teamProject:
type: string
required:
- accessTokenRef
- organization
- teamProject
type: object
bitbucket:
properties:
allBranches:
type: boolean
appPasswordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
owner:
type: string
user:
type: string
required:
- appPasswordRef
- owner
- user
type: object
bitbucketServer:
properties:
allBranches:
type: boolean
api:
type: string
basicAuth:
properties:
passwordRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
username:
type: string
required:
- passwordRef
- username
type: object
bearerToken:
properties:
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- tokenRef
type: object
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
insecure:
type: boolean
project:
type: string
required:
- api
- project
type: object
cloneProtocol:
type: string
filters:
items:
properties:
branchMatch:
type: string
labelMatch:
type: string
pathsDoNotExist:
items:
type: string
type: array
pathsExist:
items:
type: string
type: array
repositoryMatch:
type: string
type: object
type: array
gitea:
properties:
allBranches:
type: boolean
api:
type: string
excludeArchivedRepos:
type: boolean
insecure:
type: boolean
owner:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- api
- owner
type: object
github:
properties:
allBranches:
type: boolean
api:
type: string
appSecretName:
type: string
excludeArchivedRepos:
type: boolean
organization:
type: string
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
required:
- organization
type: object
gitlab:
properties:
allBranches:
type: boolean
api:
type: string
caRef:
properties:
configMapName:
type: string
key:
type: string
required:
- configMapName
- key
type: object
group:
type: string
includeArchivedRepos:
type: boolean
includeSharedProjects:
type: boolean
includeSubgroups:
type: boolean
insecure:
type: boolean
tokenRef:
properties:
key:
type: string
secretName:
type: string
required:
- key
- secretName
type: object
topic:
type: string
required:
- group
type: object
requeueAfterSeconds:
format: int64
type: integer
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
values:
additionalProperties:
type: string
type: object
type: object
selector:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
type: object
type: object
x-kubernetes-map-type: atomic
type: object
type: array
goTemplate:
type: boolean
goTemplateOptions:
items:
type: string
type: array
ignoreApplicationDifferences:
items:
properties:
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
name:
type: string
type: object
type: array
preservedFields:
properties:
annotations:
items:
type: string
type: array
labels:
items:
type: string
type: array
type: object
strategy:
properties:
deletionOrder:
type: string
rollingSync:
properties:
steps:
items:
properties:
matchExpressions:
items:
properties:
key:
type: string
operator:
type: string
values:
items:
type: string
type: array
type: object
type: array
maxUpdate:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
type: object
type: array
type: object
type:
type: string
type: object
syncPolicy:
properties:
applicationsSync:
enum:
- create-only
- create-update
- create-delete
- sync
type: string
preserveResourcesOnDeletion:
type: boolean
type: object
template:
properties:
metadata:
properties:
annotations:
additionalProperties:
type: string
type: object
finalizers:
items:
type: string
type: array
labels:
additionalProperties:
type: string
type: object
name:
type: string
namespace:
type: string
type: object
spec:
properties:
destination:
properties:
name:
type: string
namespace:
type: string
server:
type: string
type: object
ignoreDifferences:
items:
properties:
group:
type: string
jqPathExpressions:
items:
type: string
type: array
jsonPointers:
items:
type: string
type: array
kind:
type: string
managedFieldsManagers:
items:
type: string
type: array
name:
type: string
namespace:
type: string
required:
- kind
type: object
type: array
info:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
project:
type: string
revisionHistoryLimit:
format: int64
type: integer
source:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
sourceHydrator:
properties:
drySource:
properties:
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
repoURL:
type: string
targetRevision:
type: string
required:
- path
- repoURL
- targetRevision
type: object
hydrateTo:
properties:
targetBranch:
type: string
required:
- targetBranch
type: object
syncSource:
properties:
path:
minLength: 1
pattern: ^.{2,}|[^./]$
type: string
repoURL:
type: string
targetBranch:
type: string
required:
- path
- targetBranch
type: object
required:
- drySource
- syncSource
type: object
sources:
items:
properties:
chart:
type: string
directory:
properties:
exclude:
type: string
include:
type: string
jsonnet:
properties:
extVars:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
libs:
items:
type: string
type: array
tlas:
items:
properties:
code:
type: boolean
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
type: object
recurse:
type: boolean
type: object
helm:
properties:
apiVersions:
items:
type: string
type: array
fileParameters:
items:
properties:
name:
type: string
path:
type: string
type: object
type: array
ignoreMissingValueFiles:
type: boolean
kubeVersion:
type: string
namespace:
type: string
parameters:
items:
properties:
forceString:
type: boolean
name:
type: string
value:
type: string
type: object
type: array
passCredentials:
type: boolean
releaseName:
type: string
skipCrds:
type: boolean
skipSchemaValidation:
type: boolean
skipTests:
type: boolean
valueFiles:
items:
type: string
type: array
values:
type: string
valuesObject:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
type: object
kustomize:
properties:
apiVersions:
items:
type: string
type: array
commonAnnotations:
additionalProperties:
type: string
type: object
commonAnnotationsEnvsubst:
type: boolean
commonLabels:
additionalProperties:
type: string
type: object
components:
items:
type: string
type: array
forceCommonAnnotations:
type: boolean
forceCommonLabels:
type: boolean
ignoreMissingComponents:
type: boolean
images:
items:
type: string
type: array
kubeVersion:
type: string
labelIncludeTemplates:
type: boolean
labelWithoutSelector:
type: boolean
namePrefix:
type: string
nameSuffix:
type: string
namespace:
type: string
patches:
items:
properties:
options:
additionalProperties:
type: boolean
type: object
patch:
type: string
path:
type: string
target:
properties:
annotationSelector:
type: string
group:
type: string
kind:
type: string
labelSelector:
type: string
name:
type: string
namespace:
type: string
version:
type: string
type: object
type: object
type: array
replicas:
items:
properties:
count:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
name:
type: string
required:
- count
- name
type: object
type: array
version:
type: string
type: object
name:
type: string
path:
type: string
plugin:
properties:
env:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
name:
type: string
parameters:
items:
properties:
array:
items:
type: string
type: array
map:
additionalProperties:
type: string
type: object
name:
type: string
string:
type: string
type: object
type: array
type: object
ref:
type: string
repoURL:
type: string
tagPrefix:
type: string
targetRevision:
type: string
required:
- repoURL
type: object
type: array
syncPolicy:
properties:
automated:
properties:
allowEmpty:
type: boolean
enabled:
type: boolean
prune:
type: boolean
selfHeal:
type: boolean
type: object
managedNamespaceMetadata:
properties:
annotations:
additionalProperties:
type: string
type: object
labels:
additionalProperties:
type: string
type: object
type: object
retry:
properties:
backoff:
properties:
duration:
type: string
factor:
format: int64
type: integer
maxDuration:
type: string
type: object
limit:
format: int64
type: integer
refresh:
type: boolean
type: object
syncOptions:
items:
type: string
type: array
type: object
required:
- destination
- project
type: object
required:
- metadata
- spec
type: object
templatePatch:
type: string
required:
- generators
- template
type: object
status:
properties:
applicationStatus:
items:
properties:
application:
type: string
lastTransitionTime:
format: date-time
type: string
message:
type: string
status:
type: string
step:
type: string
targetRevisions:
items:
type: string
type: array
required:
- application
- message
- status
- step
- targetRevisions
type: object
type: array
conditions:
items:
properties:
lastTransitionTime:
format: date-time
type: string
message:
type: string
reason:
type: string
status:
type: string
type:
type: string
required:
- message
- reason
- status
- type
type: object
type: array
health:
properties:
lastTransitionTime:
format: date-time
type: string
message:
type: string
status:
type: string
type: object
resources:
items:
properties:
group:
type: string
health:
properties:
lastTransitionTime:
format: date-time
type: string
message:
type: string
status:
type: string
type: object
hook:
type: boolean
kind:
type: string
name:
type: string
namespace:
type: string
requiresDeletionConfirmation:
type: boolean
requiresPruning:
type: boolean
status:
type: string
syncWave:
format: int64
type: integer
version:
type: string
type: object
type: array
resourcesCount:
format: int64
type: integer
type: object
required:
- metadata
- spec
type: object
served: true
storage: true
subresources:
status: {}
{{- end }}