swagger: '2.0' info: description: Argo CD REST API for managing GitOps continuous delivery on Kubernetes. Authentication uses JWT bearer tokens obtained via the /api/v1/session endpoint. title: Argo CD AccountService ApplicationSetService API version: 2.14.0 x-type: opensource x-generated-from: documentation consumes: - application/json produces: - application/json security: - BearerToken: [] tags: - name: ApplicationSetService paths: /api/v1/applicationsets: get: tags: - ApplicationSetService summary: Argo CD List Returns List of Applicationset operationId: ApplicationSetService_List parameters: - type: array items: type: string collectionFormat: multi description: the project names to restrict returned list applicationsets. name: projects in: query - type: string description: the selector to restrict returned list to applications only with matched labels. name: selector in: query - type: string description: The application set namespace. Default empty is argocd control plane namespace. name: appsetNamespace in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/v1alpha1ApplicationSetList' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - ApplicationSetService summary: Argo CD Create Creates an Applicationset operationId: ApplicationSetService_Create parameters: - name: body in: body required: true schema: $ref: '#/definitions/v1alpha1ApplicationSet' - type: boolean name: upsert in: query - type: boolean name: dryRun in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/v1alpha1ApplicationSet' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/applicationsets/generate: post: tags: - ApplicationSetService summary: Argo CD Generate Generates operationId: ApplicationSetService_Generate parameters: - name: body in: body required: true schema: $ref: '#/definitions/applicationsetApplicationSetGenerateRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/applicationsetApplicationSetGenerateResponse' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/applicationsets/{name}: get: tags: - ApplicationSetService summary: Argo CD Get Returns an Applicationset by Name operationId: ApplicationSetService_Get parameters: - type: string description: the applicationsets's name name: name in: path required: true - type: string description: The application set namespace. Default empty is argocd control plane namespace. name: appsetNamespace in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/v1alpha1ApplicationSet' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - ApplicationSetService summary: Argo CD Delete Deletes an Application Set operationId: ApplicationSetService_Delete parameters: - type: string name: name in: path required: true - type: string description: The application set namespace. Default empty is argocd control plane namespace. name: appsetNamespace in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/applicationsetApplicationSetResponse' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/applicationsets/{name}/events: get: tags: - ApplicationSetService summary: Argo CD ListResourceEvents Returns a List of Event Resources operationId: ApplicationSetService_ListResourceEvents parameters: - type: string description: the applicationsets's name name: name in: path required: true - type: string description: The application set namespace. Default empty is argocd control plane namespace. name: appsetNamespace in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/v1EventList' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/applicationsets/{name}/resource-tree: get: tags: - ApplicationSetService summary: Argo CD ResourceTree Returns Resource Tree operationId: ApplicationSetService_ResourceTree parameters: - type: string name: name in: path required: true - type: string description: The application set namespace. Default empty is argocd control plane namespace. name: appsetNamespace in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/v1alpha1ApplicationSetTree' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/stream/applicationsets: get: tags: - ApplicationSetService operationId: ApplicationSetService_Watch parameters: - type: string name: name in: query - type: array items: type: string collectionFormat: multi name: projects in: query - type: string name: selector in: query - type: string name: appSetNamespace in: query - type: string description: when specified with a watch call, shows changes that occur after that particular version of a resource. name: resourceVersion in: query responses: '200': description: A successful response.(streaming responses) schema: type: object title: Stream result of v1alpha1ApplicationSetWatchEvent properties: error: $ref: '#/definitions/runtimeStreamError' result: $ref: '#/definitions/v1alpha1ApplicationSetWatchEvent' default: description: An unexpected error response. schema: $ref: '#/definitions/runtimeError' x-microcks-operation: delay: 0 dispatcher: FALLBACK definitions: v1alpha1BearerTokenBitbucket: description: BearerTokenBitbucket defines the Bearer token for BitBucket AppToken auth. type: object properties: tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1ApplicationSetResourceIgnoreDifferences: description: 'ApplicationSetResourceIgnoreDifferences configures how the ApplicationSet controller will ignore differences in live applications when applying changes from generated applications.' type: object properties: jqPathExpressions: description: JQPathExpressions is a list of JQ path expressions to fields to ignore differences for. type: array items: type: string jsonPointers: description: JSONPointers is a list of JSON pointers to fields to ignore differences for. type: array items: type: string name: description: Name is the name of the application to ignore differences for. If not specified, the rule applies to all applications. type: string v1alpha1SourceHydratorStatus: type: object title: SourceHydratorStatus contains information about the current state of source hydration properties: currentOperation: $ref: '#/definitions/v1alpha1HydrateOperation' lastSuccessfulOperation: $ref: '#/definitions/v1alpha1SuccessfulHydrateOperation' v1alpha1PullRequestGeneratorGitea: description: PullRequestGeneratorGitea defines connection info specific to Gitea. type: object properties: api: type: string title: The Gitea API URL to talk to. Required insecure: description: 'Allow insecure tls, for self-signed certificates; default: false.' type: boolean labels: type: array title: Labels is used to filter the PRs that you want to target items: type: string owner: description: Gitea org or user to scan. Required. type: string repo: description: Gitea repo name to scan. Required. type: string tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1DuckTypeGenerator: description: DuckType defines a generator to match against clusters registered with ArgoCD. type: object properties: configMapRef: type: string title: "ConfigMapRef is a ConfigMap with the duck type definitions needed to retrieve the data\n this includes apiVersion(group/version), kind, matchKey and validation settings\nName is the resource name of the kind, group and version, defined in the ConfigMapRef\nRequeueAfterSeconds is how long before the duckType will be rechecked for a change" labelSelector: $ref: '#/definitions/v1LabelSelector' name: type: string requeueAfterSeconds: type: integer format: int64 template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' values: type: object title: Values contains key/value pairs which are passed directly as parameters to the template additionalProperties: type: string v1alpha1PluginConfigMapRef: type: object properties: name: type: string title: Name of the ConfigMap v1alpha1HydrateOperation: type: object title: HydrateOperation contains information about the most recent hydrate operation properties: drySHA: type: string title: DrySHA holds the resolved revision (sha) of the dry source as of the most recent reconciliation finishedAt: $ref: '#/definitions/v1Time' hydratedSHA: type: string title: HydratedSHA holds the resolved revision (sha) of the hydrated source as of the most recent reconciliation message: type: string title: Message contains a message describing the current status of the hydrate operation phase: type: string title: Phase indicates the status of the hydrate operation sourceHydrator: $ref: '#/definitions/v1alpha1SourceHydrator' startedAt: $ref: '#/definitions/v1Time' v1alpha1ApplicationSource: type: object title: ApplicationSource contains all required information about the source of an application properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: $ref: '#/definitions/v1alpha1ApplicationSourceDirectory' helm: $ref: '#/definitions/v1alpha1ApplicationSourceHelm' kustomize: $ref: '#/definitions/v1alpha1ApplicationSourceKustomize' name: description: Name is used to refer to a source and is displayed in the UI. It is used in multi-source Applications. type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: $ref: '#/definitions/v1alpha1ApplicationSourcePlugin' ref: description: Ref is reference to another source within sources field. This field will not be used if used with a `source` tag. type: string repoURL: type: string title: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests targetRevision: description: 'TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart''s version.' type: string v1alpha1KustomizeGvk: type: object properties: group: type: string kind: type: string version: type: string v1alpha1Info: type: object properties: name: type: string value: type: string v1PortStatus: type: object title: PortStatus represents the error condition of a service port properties: error: type: string title: "Error is to record the problem with the service port\nThe format of the error shall comply with the following rules:\n- built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.\n---\nThe regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)\n+optional\n+kubebuilder:validation:Required\n+kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`\n+kubebuilder:validation:MaxLength=316" port: type: integer format: int32 title: Port is the port number of the service port of which status is recorded here protocol: type: string title: 'Protocol is the protocol of the service port of which status is recorded here The supported values are: "TCP", "UDP", "SCTP"' v1ManagedFieldsEntry: description: 'ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.' type: object properties: apiVersion: description: 'APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.' type: string fieldsType: type: string title: 'FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"' fieldsV1: $ref: '#/definitions/v1FieldsV1' manager: description: Manager is an identifier of the workflow managing these fields. type: string operation: description: 'Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are ''Apply'' and ''Update''.' type: string subresource: description: 'Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.' type: string time: $ref: '#/definitions/v1Time' v1alpha1PullRequestGeneratorBitbucketServer: description: PullRequestGeneratorBitbucketServer defines connection info specific to BitbucketServer. type: object properties: api: description: The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest Required. type: string basicAuth: $ref: '#/definitions/v1alpha1BasicAuthBitbucketServer' bearerToken: $ref: '#/definitions/v1alpha1BearerTokenBitbucket' caRef: $ref: '#/definitions/v1alpha1ConfigMapKeyRef' insecure: type: boolean title: 'Allow self-signed TLS / Certificates; default: false' project: description: Project to scan. Required. type: string repo: description: Repo name to scan. Required. type: string v1alpha1DrySource: description: DrySource specifies a location for dry "don't repeat yourself" manifest source information. type: object properties: directory: $ref: '#/definitions/v1alpha1ApplicationSourceDirectory' helm: $ref: '#/definitions/v1alpha1ApplicationSourceHelm' kustomize: $ref: '#/definitions/v1alpha1ApplicationSourceKustomize' path: type: string title: Path is a directory path within the Git repository where the manifests are located plugin: $ref: '#/definitions/v1alpha1ApplicationSourcePlugin' repoURL: type: string title: RepoURL is the URL to the git repository that contains the application manifests targetRevision: type: string title: TargetRevision defines the revision of the source to hydrate v1alpha1PullRequestGeneratorBitbucket: description: PullRequestGeneratorBitbucket defines connection info specific to Bitbucket. type: object properties: api: description: The Bitbucket REST API URL to talk to. If blank, uses https://api.bitbucket.org/2.0. type: string basicAuth: $ref: '#/definitions/v1alpha1BasicAuthBitbucketServer' bearerToken: $ref: '#/definitions/v1alpha1BearerTokenBitbucketCloud' owner: description: Workspace to scan. Required. type: string repo: description: Repo name to scan. Required. type: string v1LabelSelectorRequirement: description: 'A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.' type: object properties: key: description: key is the label key that the selector applies to. type: string operator: description: 'operator represents a key''s relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.' type: string values: type: array title: 'values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic' items: type: string v1alpha1InfoItem: type: object title: InfoItem contains arbitrary, human readable information about an application properties: name: description: Name is a human readable title for this piece of information. type: string value: description: Value is human readable content. type: string v1alpha1BasicAuthBitbucketServer: description: BasicAuthBitbucketServer defines the username/(password or personal access token) for Basic auth. type: object properties: passwordRef: $ref: '#/definitions/v1alpha1SecretRef' username: type: string title: Username for Basic auth v1alpha1SyncOperationResult: type: object title: SyncOperationResult represent result of sync operation properties: managedNamespaceMetadata: $ref: '#/definitions/v1alpha1ManagedNamespaceMetadata' resources: type: array title: Resources contains a list of sync result items for each individual resource in a sync operation items: $ref: '#/definitions/v1alpha1ResourceResult' revision: type: string title: Revision holds the revision this sync operation was performed to revisions: type: array title: Revisions holds the revision this sync operation was performed for respective indexed source in sources field items: type: string source: $ref: '#/definitions/v1alpha1ApplicationSource' sources: type: array title: Source records the application source information of the sync, used for comparing auto-sync items: $ref: '#/definitions/v1alpha1ApplicationSource' v1alpha1ApplicationStatus: type: object title: ApplicationStatus contains status information for the application properties: conditions: type: array title: Conditions is a list of currently observed application conditions items: $ref: '#/definitions/v1alpha1ApplicationCondition' controllerNamespace: type: string title: ControllerNamespace indicates the namespace in which the application controller is located health: $ref: '#/definitions/v1alpha1AppHealthStatus' history: type: array title: History contains information about the application's sync history items: $ref: '#/definitions/v1alpha1RevisionHistory' observedAt: $ref: '#/definitions/v1Time' operationState: $ref: '#/definitions/v1alpha1OperationState' reconciledAt: $ref: '#/definitions/v1Time' resourceHealthSource: type: string title: 'ResourceHealthSource indicates where the resource health status is stored: inline if not set or appTree' resources: type: array title: Resources is a list of Kubernetes resources managed by this application items: $ref: '#/definitions/applicationv1alpha1ResourceStatus' sourceHydrator: $ref: '#/definitions/v1alpha1SourceHydratorStatus' sourceType: type: string title: SourceType specifies the type of this application sourceTypes: type: array title: SourceTypes specifies the type of the sources included in the application items: type: string summary: $ref: '#/definitions/v1alpha1ApplicationSummary' sync: $ref: '#/definitions/v1alpha1SyncStatus' v1alpha1PluginGenerator: description: PluginGenerator defines connection info specific to Plugin. type: object properties: configMapRef: $ref: '#/definitions/v1alpha1PluginConfigMapRef' input: $ref: '#/definitions/v1alpha1PluginInput' requeueAfterSeconds: description: RequeueAfterSeconds determines how long the ApplicationSet controller will wait before reconciling the ApplicationSet again. type: integer format: int64 template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' values: description: 'Values contains key/value pairs which are passed directly as parameters to the template. These values will not be sent as parameters to the plugin.' type: object additionalProperties: type: string v1alpha1SCMProviderGeneratorGitlab: description: SCMProviderGeneratorGitlab defines connection info specific to Gitlab. type: object properties: allBranches: description: Scan all branches instead of just the default branch. type: boolean api: description: The Gitlab API URL to talk to. type: string caRef: $ref: '#/definitions/v1alpha1ConfigMapKeyRef' group: description: Gitlab group to scan. Required. You can use either the project id (recommended) or the full namespaced path. type: string includeArchivedRepos: description: Include repositories that are archived. type: boolean includeSharedProjects: type: boolean title: When recursing through subgroups, also include shared Projects (true) or scan only the subgroups under same path (false). Defaults to "true" includeSubgroups: type: boolean title: Recurse through subgroups (true) or scan only the base group (false). Defaults to "false" insecure: type: boolean title: 'Skips validating the SCM provider''s TLS certificate - useful for self-signed certificates.; default: false' tokenRef: $ref: '#/definitions/v1alpha1SecretRef' topic: description: Filter repos list based on Gitlab Topic. type: string v1alpha1ApplicationSetRolloutStrategy: type: object properties: steps: type: array items: $ref: '#/definitions/v1alpha1ApplicationSetRolloutStep' v1alpha1PullRequestGeneratorAzureDevOps: description: PullRequestGeneratorAzureDevOps defines connection info specific to AzureDevOps. type: object properties: api: description: The Azure DevOps API URL to talk to. If blank, use https://dev.azure.com/. type: string labels: type: array title: Labels is used to filter the PRs that you want to target items: type: string organization: description: Azure DevOps org to scan. Required. type: string project: description: Azure DevOps project name to scan. Required. type: string repo: description: Azure DevOps repo name to scan. Required. type: string tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1ApplicationSetSyncPolicy: description: 'ApplicationSetSyncPolicy configures how generated Applications will relate to their ApplicationSet.' type: object properties: applicationsSync: type: string title: 'ApplicationsSync represents the policy applied on the generated applications. Possible values are create-only, create-update, create-delete, sync +kubebuilder:validation:Optional +kubebuilder:validation:Enum=create-only;create-update;create-delete;sync' preserveResourcesOnDeletion: description: PreserveResourcesOnDeletion will preserve resources on deletion. If PreserveResourcesOnDeletion is set to true, these Applications will not be deleted. type: boolean v1alpha1OperationInitiator: type: object title: OperationInitiator contains information about the initiator of an operation properties: automated: description: Automated is set to true if operation was initiated automatically by the application controller. type: boolean username: type: string title: Username contains the name of a user who started operation v1alpha1HydrateTo: description: 'HydrateTo specifies a location to which hydrated manifests should be pushed as a "staging area" before being moved to the SyncSource. The RepoURL and Path are assumed based on the associated SyncSource config in the SourceHydrator.' type: object properties: targetBranch: type: string title: TargetBranch is the branch to which hydrated manifests should be committed v1ObjectMeta: description: 'ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.' type: object properties: annotations: type: object title: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations +optional' additionalProperties: type: string creationTimestamp: $ref: '#/definitions/v1Time' deletionGracePeriodSeconds: type: integer format: int64 title: 'Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. +optional' deletionTimestamp: $ref: '#/definitions/v1Time' finalizers: type: array title: 'Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. +optional +patchStrategy=merge +listType=set' items: type: string generateName: description: 'GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will return a 409. Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency +optional' type: string generation: type: integer format: int64 title: 'A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. +optional' labels: type: object title: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels +optional' additionalProperties: type: string managedFields: description: 'ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn''t need to set or understand this field. A workflow can be the user''s name, a controller''s name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. +optional +listType=atomic' type: array items: $ref: '#/definitions/v1ManagedFieldsEntry' name: type: string title: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names +optional' namespace: description: 'Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces +optional' type: string ownerReferences: type: array title: 'List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. +optional +patchMergeKey=uid +patchStrategy=merge +listType=map +listMapKey=uid' items: $ref: '#/definitions/v1OwnerReference' resourceVersion: description: 'An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional' type: string selfLink: type: string title: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. +optional' uid: description: 'UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids +optional' type: string v1alpha1ApplicationSetStatus: type: object title: ApplicationSetStatus defines the observed state of ApplicationSet properties: applicationStatus: type: array items: $ref: '#/definitions/v1alpha1ApplicationSetApplicationStatus' conditions: type: array title: 'INSERT ADDITIONAL STATUS FIELD - define observed state of cluster Important: Run "make" to regenerate code after modifying this file' items: $ref: '#/definitions/v1alpha1ApplicationSetCondition' health: $ref: '#/definitions/v1alpha1HealthStatus' resources: description: Resources is a list of Applications resources managed by this application set. type: array items: $ref: '#/definitions/applicationv1alpha1ResourceStatus' resourcesCount: description: 'ResourcesCount is the total number of resources managed by this application set. The count may be higher than actual number of items in the Resources field when the number of managed resources exceeds the limit imposed by the controller (to avoid making the status field too large).' type: integer format: int64 v1EventSource: description: EventSource contains information for an event. type: object properties: component: type: string title: 'Component from which the event is generated. +optional' host: type: string title: 'Node name on which the event is generated. +optional' v1alpha1ApplicationSpec: description: ApplicationSpec represents desired application state. Contains link to repository with application definition and additional parameters link definition revision. type: object properties: destination: $ref: '#/definitions/v1alpha1ApplicationDestination' ignoreDifferences: type: array title: IgnoreDifferences is a list of resources and their fields which should be ignored during comparison items: $ref: '#/definitions/v1alpha1ResourceIgnoreDifferences' info: type: array title: Info contains a list of information (URLs, email addresses, and plain text) that relates to the application items: $ref: '#/definitions/v1alpha1Info' project: description: 'Project is a reference to the project this application belongs to. The empty string means that application belongs to the ''default'' project.' type: string revisionHistoryLimit: description: 'RevisionHistoryLimit limits the number of items kept in the application''s revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.' type: integer format: int64 source: $ref: '#/definitions/v1alpha1ApplicationSource' sourceHydrator: $ref: '#/definitions/v1alpha1SourceHydrator' sources: type: array title: Sources is a reference to the location of the application's manifests or chart items: $ref: '#/definitions/v1alpha1ApplicationSource' syncPolicy: $ref: '#/definitions/v1alpha1SyncPolicy' v1alpha1SCMProviderGenerator: description: SCMProviderGenerator defines a generator that scrapes a SCMaaS API to find candidate repos. type: object properties: awsCodeCommit: $ref: '#/definitions/v1alpha1SCMProviderGeneratorAWSCodeCommit' azureDevOps: $ref: '#/definitions/v1alpha1SCMProviderGeneratorAzureDevOps' bitbucket: $ref: '#/definitions/v1alpha1SCMProviderGeneratorBitbucket' bitbucketServer: $ref: '#/definitions/v1alpha1SCMProviderGeneratorBitbucketServer' cloneProtocol: description: 'Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.' type: string filters: description: Filters for which repos should be considered. type: array items: $ref: '#/definitions/v1alpha1SCMProviderGeneratorFilter' gitea: $ref: '#/definitions/v1alpha1SCMProviderGeneratorGitea' github: $ref: '#/definitions/v1alpha1SCMProviderGeneratorGithub' gitlab: $ref: '#/definitions/v1alpha1SCMProviderGeneratorGitlab' requeueAfterSeconds: description: Standard parameters. type: integer format: int64 template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' values: type: object title: Values contains key/value pairs which are passed directly as parameters to the template additionalProperties: type: string v1alpha1ResourceIgnoreDifferences: description: ResourceIgnoreDifferences contains resource filter and list of json paths which should be ignored during comparison with live state. type: object properties: group: type: string jqPathExpressions: type: array items: type: string jsonPointers: type: array items: type: string kind: type: string managedFieldsManagers: type: array title: 'ManagedFieldsManagers is a list of trusted managers. Fields mutated by those managers will take precedence over the desired state defined in the SCM and won''t be displayed in diffs' items: type: string name: type: string namespace: type: string v1alpha1ApplicationSourceJsonnet: type: object title: ApplicationSourceJsonnet holds options specific to applications of type Jsonnet properties: extVars: type: array title: ExtVars is a list of Jsonnet External Variables items: $ref: '#/definitions/v1alpha1JsonnetVar' libs: type: array title: Additional library search dirs items: type: string tlas: type: array title: TLAS is a list of Jsonnet Top-level Arguments items: $ref: '#/definitions/v1alpha1JsonnetVar' v1EventList: description: EventList is a list of events. type: object properties: items: type: array title: List of events items: $ref: '#/definitions/v1Event' metadata: $ref: '#/definitions/v1ListMeta' v1alpha1ApplicationSetTemplate: type: object title: ApplicationSetTemplate represents argocd ApplicationSpec properties: metadata: $ref: '#/definitions/v1alpha1ApplicationSetTemplateMeta' spec: $ref: '#/definitions/v1alpha1ApplicationSpec' v1alpha1ApplicationSet: type: object title: 'ApplicationSet is a set of Application resources. +genclient +genclient:noStatus +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +kubebuilder:resource:path=applicationsets,shortName=appset;appsets +kubebuilder:subresource:status' properties: metadata: $ref: '#/definitions/v1ObjectMeta' spec: $ref: '#/definitions/v1alpha1ApplicationSetSpec' status: $ref: '#/definitions/v1alpha1ApplicationSetStatus' v1alpha1KustomizeReplica: type: object properties: count: $ref: '#/definitions/intstrIntOrString' name: type: string title: Name of Deployment or StatefulSet v1alpha1SecretRef: description: SecretRef struct for a reference to a secret key. type: object properties: key: type: string secretName: type: string v1FieldsV1: description: 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format. Each key is either a ''.'' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: ''f:'', where is the name of a field in a struct, or key in a map ''v:'', where is the exact json formatted value of a list item ''i:'', where is position of a item in a list ''k:'', where is a map of a list item''s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set. The exact format is defined in sigs.k8s.io/structured-merge-diff +protobuf.options.(gogoproto.goproto_stringer)=false' type: object properties: Raw: description: Raw is the underlying serialization of this object. type: string format: byte v1alpha1SyncStrategyApply: type: object title: SyncStrategyApply uses `kubectl apply` to perform the apply properties: force: description: 'Force indicates whether or not to supply the --force flag to `kubectl apply`. The --force flag deletes and re-create the resource, when PATCH encounters conflict and has retried for 5 times.' type: boolean v1alpha1SyncStatus: type: object title: SyncStatus contains information about the currently observed live and desired states of an application properties: comparedTo: $ref: '#/definitions/v1alpha1ComparedTo' revision: type: string title: Revision contains information about the revision the comparison has been performed to revisions: type: array title: Revisions contains information about the revisions of multiple sources the comparison has been performed to items: type: string status: type: string title: Status is the sync state of the comparison intstrIntOrString: description: '+protobuf=true +protobuf.options.(gogoproto.goproto_stringer)=false +k8s:openapi-gen=true' type: object title: 'IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number. TODO: Rename to Int32OrString' properties: intVal: type: integer format: int32 strVal: type: string type: type: integer format: int64 runtimeStreamError: type: object properties: details: type: array items: $ref: '#/definitions/protobufAny' grpc_code: type: integer format: int32 http_code: type: integer format: int32 http_status: type: string message: type: string v1Event: description: 'Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.' type: object properties: action: type: string title: 'What action was taken/failed regarding to the Regarding object. +optional' count: type: integer format: int32 title: 'The number of times this event has occurred. +optional' eventTime: $ref: '#/definitions/v1MicroTime' firstTimestamp: $ref: '#/definitions/v1Time' involvedObject: $ref: '#/definitions/v1ObjectReference' lastTimestamp: $ref: '#/definitions/v1Time' message: type: string title: 'A human-readable description of the status of this operation. TODO: decide on maximum length. +optional' metadata: $ref: '#/definitions/v1ObjectMeta' reason: type: string title: 'This should be a short, machine understandable string that gives the reason for the transition into the object''s current status. TODO: provide exact specification for format. +optional' related: $ref: '#/definitions/v1ObjectReference' reportingComponent: type: string title: 'Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. +optional' reportingInstance: type: string title: 'ID of the controller instance, e.g. `kubelet-xyzf`. +optional' series: $ref: '#/definitions/v1EventSeries' source: $ref: '#/definitions/v1EventSource' type: type: string title: 'Type of this event (Normal, Warning), new types could be added in the future +optional' protobufAny: type: object properties: type_url: type: string value: type: string format: byte applicationsetApplicationSetResponse: type: object properties: applicationset: $ref: '#/definitions/v1alpha1ApplicationSet' project: type: string v1alpha1HelmParameter: type: object title: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: type: boolean title: ForceString determines whether to tell Helm to interpret booleans and numbers as strings name: type: string title: Name is the name of the Helm parameter value: type: string title: Value is the value for the Helm parameter applicationv1alpha1EnvEntry: type: object title: EnvEntry represents an entry in the application's environment properties: name: type: string title: Name is the name of the variable, usually expressed in uppercase value: type: string title: Value is the value of the variable v1alpha1KustomizeResId: type: object properties: gvk: $ref: '#/definitions/v1alpha1KustomizeGvk' name: type: string namespace: type: string v1alpha1ApplicationMatchExpression: type: object properties: key: type: string operator: type: string values: type: array items: type: string v1alpha1ApplicationDestination: type: object title: ApplicationDestination holds information about the application's destination properties: name: description: Name is an alternate way of specifying the target cluster by its symbolic name. This must be set if Server is not set. type: string namespace: type: string title: 'Namespace specifies the target namespace for the application''s resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace' server: description: Server specifies the URL of the target cluster's Kubernetes control plane API. This must be set if Name is not set. type: string v1alpha1SCMProviderGeneratorAzureDevOps: description: SCMProviderGeneratorAzureDevOps defines connection info specific to Azure DevOps. type: object properties: accessTokenRef: $ref: '#/definitions/v1alpha1SecretRef' allBranches: description: Scan all branches instead of just the default branch. type: boolean api: description: The URL to Azure DevOps. If blank, use https://dev.azure.com. type: string organization: description: Azure Devops organization. Required. E.g. "my-organization". type: string teamProject: description: Azure Devops team project. Required. E.g. "my-team". type: string applicationsetApplicationSetGenerateResponse: type: object title: ApplicationSetGenerateResponse is a response for applicationset generate request properties: applications: type: array items: $ref: '#/definitions/v1alpha1Application' v1alpha1SCMProviderGeneratorBitbucketServer: description: SCMProviderGeneratorBitbucketServer defines connection info specific to Bitbucket Server. type: object properties: allBranches: description: Scan all branches instead of just the default branch. type: boolean api: description: The Bitbucket Server REST API URL to talk to. Required. type: string basicAuth: $ref: '#/definitions/v1alpha1BasicAuthBitbucketServer' bearerToken: $ref: '#/definitions/v1alpha1BearerTokenBitbucket' caRef: $ref: '#/definitions/v1alpha1ConfigMapKeyRef' insecure: type: boolean title: 'Allow self-signed TLS / Certificates; default: false' project: description: Project to scan. Required. type: string v1alpha1BearerTokenBitbucketCloud: description: BearerTokenBitbucketCloud defines the Bearer token for BitBucket AppToken auth. type: object properties: tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1ApplicationSourceKustomize: type: object title: ApplicationSourceKustomize holds options specific to an Application source specific to Kustomize properties: apiVersions: description: 'APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default, Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.' type: array items: type: string commonAnnotations: type: object title: CommonAnnotations is a list of additional annotations to add to rendered manifests additionalProperties: type: string commonAnnotationsEnvsubst: type: boolean title: CommonAnnotationsEnvsubst specifies whether to apply env variables substitution for annotation values commonLabels: type: object title: CommonLabels is a list of additional labels to add to rendered manifests additionalProperties: type: string components: type: array title: Components specifies a list of kustomize components to add to the kustomization before building items: type: string forceCommonAnnotations: type: boolean title: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps forceCommonLabels: type: boolean title: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps ignoreMissingComponents: type: boolean title: IgnoreMissingComponents prevents kustomize from failing when components do not exist locally by not appending them to kustomization file images: type: array title: Images is a list of Kustomize image override specifications items: type: string kubeVersion: description: 'KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD uses the Kubernetes version of the target cluster.' type: string labelIncludeTemplates: type: boolean title: LabelIncludeTemplates specifies whether to apply common labels to resource templates or not labelWithoutSelector: type: boolean title: LabelWithoutSelector specifies whether to apply common labels to resource selectors or not namePrefix: type: string title: NamePrefix overrides the namePrefix in the kustomization.yaml for Kustomize apps nameSuffix: type: string title: NameSuffix overrides the nameSuffix in the kustomization.yaml for Kustomize apps namespace: type: string title: Namespace sets the namespace that Kustomize adds to all resources patches: type: array title: Patches is a list of Kustomize patches items: $ref: '#/definitions/v1alpha1KustomizePatch' replicas: type: array title: Replicas is a list of Kustomize Replicas override specifications items: $ref: '#/definitions/v1alpha1KustomizeReplica' version: type: string title: Version controls which version of Kustomize to use for rendering manifests v1alpha1RevisionHistory: type: object title: RevisionHistory contains history information about a previous sync properties: deployStartedAt: $ref: '#/definitions/v1Time' deployedAt: $ref: '#/definitions/v1Time' id: type: integer format: int64 title: ID is an auto incrementing identifier of the RevisionHistory initiatedBy: $ref: '#/definitions/v1alpha1OperationInitiator' revision: type: string title: Revision holds the revision the sync was performed against revisions: type: array title: Revisions holds the revision of each source in sources field the sync was performed against items: type: string source: $ref: '#/definitions/v1alpha1ApplicationSource' sources: type: array title: Sources is a reference to the application sources used for the sync operation items: $ref: '#/definitions/v1alpha1ApplicationSource' v1LoadBalancerIngress: description: 'LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.' type: object properties: hostname: type: string title: 'Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) +optional' ip: type: string title: 'IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) +optional' ipMode: type: string title: 'IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to "VIP" indicates that traffic is delivered to the node with the destination set to the load-balancer''s IP and port. Setting this to "Proxy" indicates that traffic is delivered to the node or pod with the destination set to the node''s IP and node port or the pod''s IP and port. Service implementations may use this information to adjust traffic routing. +optional' ports: type: array title: 'Ports is a list of records of service ports If used, every port defined in the service should have an entry in it +listType=atomic +optional' items: $ref: '#/definitions/v1PortStatus' v1alpha1ApplicationPreservedFields: type: object properties: annotations: type: array items: type: string labels: type: array items: type: string v1alpha1Application: type: object title: 'Application is a definition of Application resource. +genclient +genclient:noStatus +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +kubebuilder:resource:path=applications,shortName=app;apps +kubebuilder:printcolumn:name="Sync Status",type=string,JSONPath=`.status.sync.status` +kubebuilder:printcolumn:name="Health Status",type=string,JSONPath=`.status.health.status` +kubebuilder:printcolumn:name="Revision",type=string,JSONPath=`.status.sync.revision`,priority=10 +kubebuilder:printcolumn:name="Project",type=string,JSONPath=`.spec.project`,priority=10' properties: metadata: $ref: '#/definitions/v1ObjectMeta' operation: $ref: '#/definitions/v1alpha1Operation' spec: $ref: '#/definitions/v1alpha1ApplicationSpec' status: $ref: '#/definitions/v1alpha1ApplicationStatus' v1alpha1MergeGenerator: description: 'MergeGenerator merges the output of two or more generators. Where the values for all specified merge keys are equal between two sets of generated parameters, the parameter sets will be merged with the parameters from the latter generator taking precedence. Parameter sets with merge keys not present in the base generator''s params will be ignored. For example, if the first generator produced [{a: ''1'', b: ''2''}, {c: ''1'', d: ''1''}] and the second generator produced [{''a'': ''override''}], the united parameters for merge keys = [''a''] would be [{a: ''override'', b: ''1''}, {c: ''1'', d: ''1''}]. MergeGenerator supports template overriding. If a MergeGenerator is one of multiple top-level generators, its template will be merged with the top-level generator before the parameters are applied.' type: object properties: generators: type: array items: $ref: '#/definitions/v1alpha1ApplicationSetNestedGenerator' mergeKeys: type: array items: type: string template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' v1alpha1JsonnetVar: type: object title: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string v1alpha1ApplicationSourcePlugin: type: object title: ApplicationSourcePlugin holds options specific to config management plugins properties: env: type: array items: $ref: '#/definitions/applicationv1alpha1EnvEntry' name: type: string parameters: type: array items: $ref: '#/definitions/v1alpha1ApplicationSourcePluginParameter' v1alpha1OperationState: type: object title: OperationState contains information about state of a running operation properties: finishedAt: $ref: '#/definitions/v1Time' message: description: Message holds any pertinent messages when attempting to perform operation (typically errors). type: string operation: $ref: '#/definitions/v1alpha1Operation' phase: type: string title: Phase is the current phase of the operation retryCount: type: integer format: int64 title: RetryCount contains time of operation retries startedAt: $ref: '#/definitions/v1Time' syncResult: $ref: '#/definitions/v1alpha1SyncOperationResult' v1alpha1KustomizeSelector: type: object properties: annotationSelector: type: string labelSelector: type: string resId: $ref: '#/definitions/v1alpha1KustomizeResId' v1alpha1AppHealthStatus: type: object title: AppHealthStatus contains information about the currently observed health state of an application properties: lastTransitionTime: $ref: '#/definitions/v1Time' message: description: 'Deprecated: this field is not used and will be removed in a future release.' type: string title: Message is a human-readable informational message describing the health status status: type: string title: Status holds the status code of the application v1alpha1SCMProviderGeneratorFilter: description: 'SCMProviderGeneratorFilter is a single repository filter. If multiple filter types are set on a single struct, they will be AND''d together. All filters must pass for a repo to be included.' type: object properties: branchMatch: description: A regex which must match the branch name. type: string labelMatch: description: A regex which must match at least one label. type: string pathsDoNotExist: description: An array of paths, all of which must not exist. type: array items: type: string pathsExist: description: An array of paths, all of which must exist. type: array items: type: string repositoryMatch: description: A regex for repo names. type: string v1alpha1ApplicationSetStrategy: description: ApplicationSetStrategy configures how generated Applications are updated in sequence. type: object properties: deletionOrder: type: string title: 'DeletionOrder allows specifying the order for deleting generated apps when progressive sync is enabled. accepts values "AllAtOnce" and "Reverse"' rollingSync: $ref: '#/definitions/v1alpha1ApplicationSetRolloutStrategy' type: type: string v1alpha1ClusterGenerator: description: ClusterGenerator defines a generator to match against clusters registered with ArgoCD. type: object properties: flatList: type: boolean title: returns the clusters a single 'clusters' value in the template selector: $ref: '#/definitions/v1LabelSelector' template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' values: type: object title: Values contains key/value pairs which are passed directly as parameters to the template additionalProperties: type: string v1alpha1ApplicationSourceHelm: type: object title: ApplicationSourceHelm holds helm specific options properties: apiVersions: description: 'APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default, Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.' type: array items: type: string fileParameters: type: array title: FileParameters are file parameters to the helm template items: $ref: '#/definitions/v1alpha1HelmFileParameter' ignoreMissingValueFiles: type: boolean title: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values kubeVersion: description: 'KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD uses the Kubernetes version of the target cluster.' type: string namespace: description: Namespace is an optional namespace to template with. If left empty, defaults to the app's destination namespace. type: string parameters: type: array title: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: $ref: '#/definitions/v1alpha1HelmParameter' passCredentials: type: boolean title: PassCredentials pass credentials to all domains (Helm's --pass-credentials) releaseName: type: string title: ReleaseName is the Helm release name to use. If omitted it will use the application name skipCrds: type: boolean title: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) skipSchemaValidation: type: boolean title: SkipSchemaValidation skips JSON schema validation (Helm's --skip-schema-validation) skipTests: description: SkipTests skips test manifest installation step (Helm's --skip-tests). type: boolean valueFiles: type: array title: ValuesFiles is a list of Helm value files to use when generating a template items: type: string values: type: string title: 'Values specifies Helm values to be passed to helm template, typically defined as a block. ValuesObject takes precedence over Values, so use one or the other. +patchStrategy=replace' valuesObject: $ref: '#/definitions/runtimeRawExtension' version: type: string title: Version is the Helm version to use for templating ("3") v1alpha1ApplicationCondition: type: object title: ApplicationCondition contains details about an application condition, which is usually an error or warning properties: lastTransitionTime: $ref: '#/definitions/v1Time' message: type: string title: Message contains human-readable message indicating details about condition type: type: string title: Type is an application condition type v1LabelSelector: type: object title: 'A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects. +structType=atomic' properties: matchExpressions: type: array title: 'matchExpressions is a list of label selector requirements. The requirements are ANDed. +optional +listType=atomic' items: $ref: '#/definitions/v1LabelSelectorRequirement' matchLabels: type: object title: 'matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. +optional' additionalProperties: type: string v1alpha1ApplicationSourcePluginParameter: type: object properties: array: description: Array is the value of an array type parameter. type: array items: type: string map: description: Map is the value of a map type parameter. type: object additionalProperties: type: string name: description: Name is the name identifying a parameter. type: string string: description: String_ is the value of a string type parameter. type: string v1EventSeries: description: 'EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.' type: object properties: count: type: integer format: int32 title: Number of occurrences in this series up to the last heartbeat time lastObservedTime: $ref: '#/definitions/v1MicroTime' v1alpha1PullRequestGeneratorGithub: description: PullRequestGeneratorGithub defines connection info specific to GitHub. type: object properties: api: description: The GitHub API URL to talk to. If blank, use https://api.github.com/. type: string appSecretName: description: AppSecretName is a reference to a GitHub App repo-creds secret with permission to access pull requests. type: string labels: type: array title: Labels is used to filter the PRs that you want to target items: type: string owner: description: GitHub org or user to scan. Required. type: string repo: description: GitHub repo name to scan. Required. type: string tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1ApplicationSetSpec: description: ApplicationSetSpec represents a class of application set state. type: object properties: applyNestedSelectors: description: 'ApplyNestedSelectors enables selectors defined within the generators of two level-nested matrix or merge generators. Deprecated: This field is ignored, and the behavior is always enabled. The field will be removed in a future version of the ApplicationSet CRD.' type: boolean generators: type: array items: $ref: '#/definitions/v1alpha1ApplicationSetGenerator' goTemplate: type: boolean goTemplateOptions: type: array items: type: string ignoreApplicationDifferences: type: array items: $ref: '#/definitions/v1alpha1ApplicationSetResourceIgnoreDifferences' preservedFields: $ref: '#/definitions/v1alpha1ApplicationPreservedFields' strategy: $ref: '#/definitions/v1alpha1ApplicationSetStrategy' syncPolicy: $ref: '#/definitions/v1alpha1ApplicationSetSyncPolicy' template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' templatePatch: type: string v1alpha1GitDirectoryGeneratorItem: type: object properties: exclude: type: boolean path: type: string v1alpha1ApplicationSetNestedGenerator: description: 'ApplicationSetNestedGenerator represents a generator nested within a combination-type generator (MatrixGenerator or MergeGenerator).' type: object properties: clusterDecisionResource: $ref: '#/definitions/v1alpha1DuckTypeGenerator' clusters: $ref: '#/definitions/v1alpha1ClusterGenerator' git: $ref: '#/definitions/v1alpha1GitGenerator' list: $ref: '#/definitions/v1alpha1ListGenerator' matrix: $ref: '#/definitions/v1JSON' merge: $ref: '#/definitions/v1JSON' plugin: $ref: '#/definitions/v1alpha1PluginGenerator' pullRequest: $ref: '#/definitions/v1alpha1PullRequestGenerator' scmProvider: $ref: '#/definitions/v1alpha1SCMProviderGenerator' selector: $ref: '#/definitions/v1LabelSelector' v1alpha1SyncOperation: description: SyncOperation contains details about a sync operation. type: object properties: autoHealAttemptsCount: type: integer format: int64 title: SelfHealAttemptsCount contains the number of auto-heal attempts dryRun: type: boolean title: DryRun specifies to perform a `kubectl apply --dry-run` without actually performing the sync manifests: type: array title: Manifests is an optional field that overrides sync source with a local directory for development items: type: string prune: type: boolean title: Prune specifies to delete resources from the cluster that are no longer tracked in git resources: type: array title: Resources describes which resources shall be part of the sync items: $ref: '#/definitions/v1alpha1SyncOperationResource' revision: description: 'Revision is the revision (Git) or chart version (Helm) which to sync the application to If omitted, will use the revision specified in app spec.' type: string revisions: description: 'Revisions is the list of revision (Git) or chart version (Helm) which to sync each source in sources field for the application to If omitted, will use the revision specified in app spec.' type: array items: type: string source: $ref: '#/definitions/v1alpha1ApplicationSource' sources: type: array title: 'Sources overrides the source definition set in the application. This is typically set in a Rollback operation and is nil during a Sync operation' items: $ref: '#/definitions/v1alpha1ApplicationSource' syncOptions: type: array title: SyncOptions provide per-sync sync-options, e.g. Validate=false items: type: string syncStrategy: $ref: '#/definitions/v1alpha1SyncStrategy' v1alpha1MatrixGenerator: description: 'MatrixGenerator generates the cartesian product of two sets of parameters. The parameters are defined by two nested generators.' type: object properties: generators: type: array items: $ref: '#/definitions/v1alpha1ApplicationSetNestedGenerator' template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' v1alpha1PullRequestGeneratorGitLab: description: PullRequestGeneratorGitLab defines connection info specific to GitLab. type: object properties: api: description: The GitLab API URL to talk to. If blank, uses https://gitlab.com/. type: string caRef: $ref: '#/definitions/v1alpha1ConfigMapKeyRef' insecure: type: boolean title: 'Skips validating the SCM provider''s TLS certificate - useful for self-signed certificates.; default: false' labels: type: array title: Labels is used to filter the MRs that you want to target items: type: string project: description: GitLab project to scan. Required. type: string pullRequestState: description: 'PullRequestState is an additional MRs filter to get only those with a certain state. Default: "" (all states). Valid values: opened, closed, merged, locked".' type: string tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1ApplicationSourceDirectory: type: object title: ApplicationSourceDirectory holds options for applications of type plain YAML or Jsonnet properties: exclude: type: string title: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation include: type: string title: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation jsonnet: $ref: '#/definitions/v1alpha1ApplicationSourceJsonnet' recurse: type: boolean title: Recurse specifies whether to scan a directory recursively for manifests v1alpha1ResourceRef: type: object title: ResourceRef includes fields which uniquely identify a resource properties: group: type: string kind: type: string name: type: string namespace: type: string uid: type: string version: type: string v1alpha1HelmFileParameter: type: object title: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: type: string title: Name is the name of the Helm parameter path: type: string title: Path is the path to the file containing the values for the Helm parameter v1OwnerReference: type: object title: 'OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. +structType=atomic' properties: apiVersion: description: API version of the referent. type: string blockOwnerDeletion: type: boolean title: 'If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. +optional' controller: type: boolean title: 'If true, this reference points to the managing controller. +optional' kind: type: string title: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' name: type: string title: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' uid: type: string title: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' v1alpha1PluginInput: type: object properties: parameters: description: 'Parameters contains the information to pass to the plugin. It is a map. The keys must be strings, and the values can be any type.' type: object additionalProperties: $ref: '#/definitions/v1JSON' applicationsetApplicationSetGenerateRequest: type: object title: ApplicationSetGetQuery is a query for applicationset resources properties: applicationSet: $ref: '#/definitions/v1alpha1ApplicationSet' v1alpha1ApplicationSetList: type: object title: 'ApplicationSetList contains a list of ApplicationSet +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +kubebuilder:object:root=true' properties: items: type: array items: $ref: '#/definitions/v1alpha1ApplicationSet' metadata: $ref: '#/definitions/v1ListMeta' v1Time: description: 'Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. +protobuf.options.marshal=false +protobuf.as=Timestamp +protobuf.options.(gogoproto.goproto_stringer)=false' type: string format: date-time v1alpha1ApplicationSetCondition: type: object title: ApplicationSetCondition contains details about an applicationset condition, which is usually an error or warning properties: lastTransitionTime: $ref: '#/definitions/v1Time' message: type: string title: Message contains human-readable message indicating details about condition reason: type: string title: Single word camelcase representing the reason for the status eg ErrorOccurred status: type: string title: True/False/Unknown type: type: string title: Type is an applicationset condition type v1alpha1ApplicationSummary: type: object title: ApplicationSummary contains information about URLs and container images used by an application properties: externalURLs: description: ExternalURLs holds all external URLs of application child resources. type: array items: type: string images: description: Images holds all images of application child resources. type: array items: type: string v1alpha1SyncPolicy: type: object title: SyncPolicy controls when a sync will be performed in response to updates in git properties: automated: $ref: '#/definitions/v1alpha1SyncPolicyAutomated' managedNamespaceMetadata: $ref: '#/definitions/v1alpha1ManagedNamespaceMetadata' retry: $ref: '#/definitions/v1alpha1RetryStrategy' syncOptions: type: array title: Options allow you to specify whole app sync-options items: type: string v1alpha1ResourceNetworkingInfo: description: ResourceNetworkingInfo holds networking-related information for a resource. type: object properties: externalURLs: description: 'ExternalURLs holds a list of URLs that should be accessible externally. This field is typically populated for Ingress resources based on their hostname rules.' type: array items: type: string ingress: description: Ingress provides information about external access points (e.g., load balancer ingress) for this resource. type: array items: $ref: '#/definitions/v1LoadBalancerIngress' labels: description: Labels holds the labels associated with this networking resource. type: object additionalProperties: type: string targetLabels: description: TargetLabels represents labels associated with the target resources that this resource communicates with. type: object additionalProperties: type: string targetRefs: description: TargetRefs contains references to other resources that this resource interacts with, such as Services or Pods. type: array items: $ref: '#/definitions/v1alpha1ResourceRef' v1JSON: description: 'JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.' type: object properties: raw: type: string format: byte v1alpha1ApplicationSetApplicationStatus: type: object title: ApplicationSetApplicationStatus contains details about each Application managed by the ApplicationSet properties: application: type: string title: Application contains the name of the Application resource lastTransitionTime: $ref: '#/definitions/v1Time' message: type: string title: Message contains human-readable message indicating details about the status status: type: string title: Status contains the AppSet's perceived status of the managed Application resource step: type: string title: Step tracks which step this Application should be updated in targetrevisions: description: TargetRevision tracks the desired revisions the Application should be synced to. type: array items: type: string v1alpha1SuccessfulHydrateOperation: type: object title: SuccessfulHydrateOperation contains information about the most recent successful hydrate operation properties: drySHA: type: string title: DrySHA holds the resolved revision (sha) of the dry source as of the most recent reconciliation hydratedSHA: type: string title: HydratedSHA holds the resolved revision (sha) of the hydrated source as of the most recent reconciliation sourceHydrator: $ref: '#/definitions/v1alpha1SourceHydrator' v1alpha1SCMProviderGeneratorAWSCodeCommit: description: SCMProviderGeneratorAWSCodeCommit defines connection info specific to AWS CodeCommit. type: object properties: allBranches: description: Scan all branches instead of just the default branch. type: boolean region: description: 'Region provides the AWS region to discover repos. if not provided, AppSet controller will infer the current region from environment.' type: string role: description: 'Role provides the AWS IAM role to assume, for cross-account repo discovery if not provided, AppSet controller will use its pod/node identity to discover.' type: string tagFilters: type: array title: TagFilters provides the tag filter(s) for repo discovery items: $ref: '#/definitions/v1alpha1TagFilter' v1alpha1ConfigMapKeyRef: description: ConfigMapKeyRef struct for a reference to a configmap key. type: object properties: configMapName: type: string key: type: string v1MicroTime: description: 'MicroTime is version of Time with microsecond level precision. +protobuf.options.marshal=false +protobuf.as=Timestamp +protobuf.options.(gogoproto.goproto_stringer)=false' type: object properties: nanos: description: 'Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive. This field may be limited in precision depending on context.' type: integer format: int32 seconds: description: 'Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.' type: integer format: int64 v1alpha1SCMProviderGeneratorBitbucket: description: SCMProviderGeneratorBitbucket defines connection info specific to Bitbucket Cloud (API version 2). type: object properties: allBranches: description: Scan all branches instead of just the main branch. type: boolean appPasswordRef: $ref: '#/definitions/v1alpha1SecretRef' owner: description: Bitbucket workspace to scan. Required. type: string user: type: string title: Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches. Required v1alpha1ResourceResult: type: object title: ResourceResult holds the operation result details of a specific resource properties: group: type: string title: Group specifies the API group of the resource hookPhase: description: 'HookPhase contains the state of any operation associated with this resource OR hook This can also contain values for non-hook resources.' type: string hookType: type: string title: HookType specifies the type of the hook. Empty for non-hook resources images: type: array title: Images contains the images related to the ResourceResult items: type: string kind: type: string title: Kind specifies the API kind of the resource message: type: string title: Message contains an informational or error message for the last sync OR operation name: type: string title: Name specifies the name of the resource namespace: type: string title: Namespace specifies the target namespace of the resource status: type: string title: Status holds the final result of the sync. Will be empty if the resources is yet to be applied/pruned and is always zero-value for hooks syncPhase: type: string title: SyncPhase indicates the particular phase of the sync that this result was acquired in version: type: string title: Version specifies the API version of the resource v1alpha1PullRequestGenerator: description: PullRequestGenerator defines a generator that scrapes a PullRequest API to find candidate pull requests. type: object properties: azuredevops: $ref: '#/definitions/v1alpha1PullRequestGeneratorAzureDevOps' bitbucket: $ref: '#/definitions/v1alpha1PullRequestGeneratorBitbucket' bitbucketServer: $ref: '#/definitions/v1alpha1PullRequestGeneratorBitbucketServer' continueOnRepoNotFoundError: description: ContinueOnRepoNotFoundError is a flag to continue the ApplicationSet Pull Request generator parameters generation even if the repository is not found. type: boolean filters: description: Filters for which pull requests should be considered. type: array items: $ref: '#/definitions/v1alpha1PullRequestGeneratorFilter' gitea: $ref: '#/definitions/v1alpha1PullRequestGeneratorGitea' github: $ref: '#/definitions/v1alpha1PullRequestGeneratorGithub' gitlab: $ref: '#/definitions/v1alpha1PullRequestGeneratorGitLab' requeueAfterSeconds: description: Standard parameters. type: integer format: int64 template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' values: type: object title: Values contains key/value pairs which are passed directly as parameters to the template additionalProperties: type: string v1alpha1HealthStatus: type: object title: HealthStatus contains information about the currently observed health state of a resource properties: lastTransitionTime: $ref: '#/definitions/v1Time' message: type: string title: Message is a human-readable informational message describing the health status status: type: string title: Status holds the status code of the resource v1alpha1PullRequestGeneratorFilter: description: 'PullRequestGeneratorFilter is a single pull request filter. If multiple filter types are set on a single struct, they will be AND''d together. All filters must pass for a pull request to be included.' type: object properties: branchMatch: type: string targetBranchMatch: type: string titleMatch: type: string applicationv1alpha1ResourceStatus: description: ResourceStatus holds the current synchronization and health status of a Kubernetes resource. type: object properties: group: description: Group represents the API group of the resource (e.g., "apps" for Deployments). type: string health: $ref: '#/definitions/v1alpha1HealthStatus' hook: description: Hook is true if the resource is used as a lifecycle hook in an Argo CD application. type: boolean kind: description: Kind specifies the type of the resource (e.g., "Deployment", "Service"). type: string name: description: Name is the unique name of the resource within the namespace. type: string namespace: description: Namespace defines the Kubernetes namespace where the resource is located. type: string requiresDeletionConfirmation: description: RequiresDeletionConfirmation is true if the resource requires explicit user confirmation before deletion. type: boolean requiresPruning: description: RequiresPruning is true if the resource needs to be pruned (deleted) as part of synchronization. type: boolean status: description: Status represents the synchronization state of the resource (e.g., Synced, OutOfSync). type: string syncWave: description: 'SyncWave determines the order in which resources are applied during a sync operation. Lower values are applied first.' type: integer format: int64 version: description: Version indicates the API version of the resource (e.g., "v1", "v1beta1"). type: string v1alpha1RetryStrategy: type: object title: RetryStrategy contains information about the strategy to apply when a sync failed properties: backoff: $ref: '#/definitions/v1alpha1Backoff' limit: description: Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. type: integer format: int64 refresh: type: boolean title: 'Refresh indicates if the latest revision should be used on retry instead of the initial one (default: false)' v1alpha1Backoff: type: object title: Backoff is the backoff strategy to use on subsequent retries for failing syncs properties: duration: type: string title: Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. "2m", "1h") factor: type: integer format: int64 title: Factor is a factor to multiply the base duration after each failed retry maxDuration: type: string title: MaxDuration is the maximum amount of time allowed for the backoff strategy runtimeError: type: object properties: code: type: integer format: int32 details: type: array items: $ref: '#/definitions/protobufAny' error: type: string message: type: string v1alpha1TagFilter: type: object properties: key: type: string value: type: string v1alpha1KustomizePatch: type: object properties: options: type: object additionalProperties: type: boolean patch: type: string path: type: string target: $ref: '#/definitions/v1alpha1KustomizeSelector' v1alpha1ManagedNamespaceMetadata: type: object properties: annotations: type: object additionalProperties: type: string labels: type: object additionalProperties: type: string v1alpha1SourceHydrator: description: 'SourceHydrator specifies a dry "don''t repeat yourself" source for manifests, a sync source from which to sync hydrated manifests, and an optional hydrateTo location to act as a "staging" aread for hydrated manifests.' type: object properties: drySource: $ref: '#/definitions/v1alpha1DrySource' hydrateTo: $ref: '#/definitions/v1alpha1HydrateTo' syncSource: $ref: '#/definitions/v1alpha1SyncSource' v1alpha1SyncStrategyHook: description: 'SyncStrategyHook will perform a sync using hooks annotations. If no hook annotation is specified falls back to `kubectl apply`.' type: object properties: syncStrategyApply: $ref: '#/definitions/v1alpha1SyncStrategyApply' v1alpha1ComparedTo: type: object title: ComparedTo contains application source and target which was used for resources comparison properties: destination: $ref: '#/definitions/v1alpha1ApplicationDestination' ignoreDifferences: type: array title: IgnoreDifferences is a reference to the application's ignored differences used for comparison items: $ref: '#/definitions/v1alpha1ResourceIgnoreDifferences' source: $ref: '#/definitions/v1alpha1ApplicationSource' sources: type: array title: Sources is a reference to the application's multiple sources used for comparison items: $ref: '#/definitions/v1alpha1ApplicationSource' v1alpha1GitGenerator: type: object properties: directories: type: array items: $ref: '#/definitions/v1alpha1GitDirectoryGeneratorItem' files: type: array items: $ref: '#/definitions/v1alpha1GitFileGeneratorItem' pathParamPrefix: type: string repoURL: type: string requeueAfterSeconds: type: integer format: int64 revision: type: string template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' values: type: object title: Values contains key/value pairs which are passed directly as parameters to the template additionalProperties: type: string v1alpha1SCMProviderGeneratorGitea: description: SCMProviderGeneratorGitea defines a connection info specific to Gitea. type: object properties: allBranches: description: Scan all branches instead of just the default branch. type: boolean api: description: The Gitea URL to talk to. For example https://gitea.mydomain.com/. type: string excludeArchivedRepos: description: Exclude repositories that are archived. type: boolean insecure: type: boolean title: 'Allow self-signed TLS / Certificates; default: false' owner: description: Gitea organization or user to scan. Required. type: string tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1SyncPolicyAutomated: type: object title: SyncPolicyAutomated controls the behavior of an automated sync properties: allowEmpty: type: boolean title: 'AllowEmpty allows apps have zero live resources (default: false)' enabled: type: boolean title: Enable allows apps to explicitly control automated sync prune: type: boolean title: 'Prune specifies whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync (default: false)' selfHeal: type: boolean title: 'SelfHeal specifies whether to revert resources back to their desired state upon modification in the cluster (default: false)' v1alpha1ApplicationSetWatchEvent: description: ApplicationSetWatchEvent contains information about application change. type: object properties: applicationSet: $ref: '#/definitions/v1alpha1ApplicationSet' type: type: string title: 'Type represents the Kubernetes watch event type. The protobuf tag uses casttype to ensure the generated Go code keeps this field as watch.EventType (a strong Go type) instead of falling back to a plain string' v1alpha1SyncOperationResource: description: SyncOperationResource contains resources to sync. type: object properties: group: type: string kind: type: string name: type: string namespace: type: string v1alpha1SCMProviderGeneratorGithub: description: SCMProviderGeneratorGithub defines connection info specific to GitHub. type: object properties: allBranches: description: Scan all branches instead of just the default branch. type: boolean api: description: The GitHub API URL to talk to. If blank, use https://api.github.com/. type: string appSecretName: description: AppSecretName is a reference to a GitHub App repo-creds secret. type: string excludeArchivedRepos: description: Exclude repositories that are archived. type: boolean organization: description: GitHub org to scan. Required. type: string tokenRef: $ref: '#/definitions/v1alpha1SecretRef' v1alpha1ResourceNode: description: ResourceNode contains information about a live Kubernetes resource and its relationships with other resources. type: object properties: createdAt: $ref: '#/definitions/v1Time' health: $ref: '#/definitions/v1alpha1HealthStatus' images: description: 'Images lists container images associated with the resource. This is primarily useful for pods and other workload resources.' type: array items: type: string info: description: Info provides additional metadata or annotations about the resource. type: array items: $ref: '#/definitions/v1alpha1InfoItem' networkingInfo: $ref: '#/definitions/v1alpha1ResourceNetworkingInfo' parentRefs: description: 'ParentRefs lists the parent resources that reference this resource. This helps in understanding ownership and hierarchical relationships.' type: array items: $ref: '#/definitions/v1alpha1ResourceRef' resourceVersion: description: ResourceVersion indicates the version of the resource, used to track changes. type: string allOf: - $ref: '#/definitions/v1alpha1ResourceRef' v1alpha1SyncStrategy: type: object title: SyncStrategy controls the manner in which a sync is performed properties: apply: $ref: '#/definitions/v1alpha1SyncStrategyApply' hook: $ref: '#/definitions/v1alpha1SyncStrategyHook' v1ObjectReference: description: "ObjectReference contains enough information to let you inspect or modify the referred object.\n---\nNew uses of this type are discouraged because of difficulty describing its usage when embedded in APIs.\n 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage.\n 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular\n restrictions like, \"must refer only to types A and B\" or \"UID not honored\" or \"name must be restricted\".\n Those cannot be well described when embedded.\n 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen.\n 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity\n during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple\n and the version of the actual struct is irrelevant.\n 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type\n will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control.\n\nInstead of using this type, create a locally provided and used type that is well-focused on your reference.\nFor example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 .\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object\n+structType=atomic" type: object properties: apiVersion: type: string title: 'API version of the referent. +optional' fieldPath: type: string title: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future. +optional' kind: type: string title: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds +optional' name: type: string title: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names +optional' namespace: type: string title: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ +optional' resourceVersion: type: string title: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional' uid: type: string title: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids +optional' v1alpha1GitFileGeneratorItem: type: object properties: exclude: type: boolean path: type: string runtimeRawExtension: description: "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned\nstruct, and Object in your internal struct. You also need to register your\nvarious plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into\nyour external MyAPIObject. That causes the raw JSON to be stored, but not unpacked.\nThe next step is to copy (using pkg/conversion) into the internal struct. The runtime\npackage's DefaultScheme has conversion functions installed which will unpack the\nJSON stored in RawExtension, turning it into the correct object type, and storing it\nin the Object. (TODO: In the case where the object is of an unknown type, a\nruntime.Unknown object will be created and stored.)\n\n+k8s:deepcopy-gen=true\n+protobuf=true\n+k8s:openapi-gen=true" type: object properties: raw: description: 'Raw is the underlying serialization of this object. TODO: Determine how to detect ContentType and ContentEncoding of ''Raw'' data.' type: string format: byte v1ListMeta: description: 'ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.' type: object properties: continue: description: 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.' type: string remainingItemCount: type: integer format: int64 title: 'remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. +optional' resourceVersion: type: string title: 'String that identifies the server''s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional' selfLink: type: string title: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. +optional' v1alpha1ApplicationSetRolloutStep: type: object properties: matchExpressions: type: array items: $ref: '#/definitions/v1alpha1ApplicationMatchExpression' maxUpdate: $ref: '#/definitions/intstrIntOrString' v1alpha1ApplicationSetGenerator: description: ApplicationSetGenerator represents a generator at the top level of an ApplicationSet. type: object properties: clusterDecisionResource: $ref: '#/definitions/v1alpha1DuckTypeGenerator' clusters: $ref: '#/definitions/v1alpha1ClusterGenerator' git: $ref: '#/definitions/v1alpha1GitGenerator' list: $ref: '#/definitions/v1alpha1ListGenerator' matrix: $ref: '#/definitions/v1alpha1MatrixGenerator' merge: $ref: '#/definitions/v1alpha1MergeGenerator' plugin: $ref: '#/definitions/v1alpha1PluginGenerator' pullRequest: $ref: '#/definitions/v1alpha1PullRequestGenerator' scmProvider: $ref: '#/definitions/v1alpha1SCMProviderGenerator' selector: $ref: '#/definitions/v1LabelSelector' v1alpha1SyncSource: description: 'SyncSource specifies a location from which hydrated manifests may be synced. RepoURL is assumed based on the associated DrySource config in the SourceHydrator.' type: object properties: path: description: 'Path is a directory path within the git repository where hydrated manifests should be committed to and synced from. The Path should never point to the root of the repo. If hydrateTo is set, this is just the path from which hydrated manifests will be synced. +kubebuilder:validation:Required +kubebuilder:validation:MinLength=1 +kubebuilder:validation:Pattern=`^.{2,}|[^./]$`' type: string targetBranch: description: 'TargetBranch is the branch from which hydrated manifests will be synced. If HydrateTo is not set, this is also the branch to which hydrated manifests are committed.' type: string v1alpha1ListGenerator: type: object title: ListGenerator include items info properties: elements: type: array title: +kubebuilder:validation:Optional items: $ref: '#/definitions/v1JSON' elementsYaml: type: string template: $ref: '#/definitions/v1alpha1ApplicationSetTemplate' v1alpha1ApplicationSetTemplateMeta: type: object title: 'ApplicationSetTemplateMeta represents the Argo CD application fields that may be used for Applications generated from the ApplicationSet (based on metav1.ObjectMeta)' properties: annotations: type: object additionalProperties: type: string finalizers: type: array items: type: string labels: type: object additionalProperties: type: string name: type: string namespace: type: string v1alpha1Operation: type: object title: Operation contains information about a requested or running operation properties: info: type: array title: Info is a list of informational items for this operation items: $ref: '#/definitions/v1alpha1Info' initiatedBy: $ref: '#/definitions/v1alpha1OperationInitiator' retry: $ref: '#/definitions/v1alpha1RetryStrategy' sync: $ref: '#/definitions/v1alpha1SyncOperation' v1alpha1ApplicationSetTree: type: object title: 'ApplicationSetTree holds nodes which belongs to the application Used to build a tree of an ApplicationSet and its children' properties: nodes: type: array title: Nodes contains list of nodes which are directly managed by the applicationset items: $ref: '#/definitions/v1alpha1ResourceNode' securityDefinitions: BearerToken: type: apiKey in: header name: Authorization description: 'JWT Bearer token. Format: Bearer '