@soft-stech/fleet
Version:
701 lines (700 loc) • 28.5 kB
TypeScript
import { IObjectMeta } from "@soft-stech/apimachinery/apis/meta/v1/ObjectMeta";
import { Model, ModelData } from "@soft-stech/base";
/**
* BundleDeployment is used internally by Fleet and should not be used directly.
* When a Bundle is deployed to a cluster an instance of a Bundle is called a
* BundleDeployment. A BundleDeployment represents the state of that Bundle on
* a specific cluster with its cluster-specific customizations. The Fleet agent
* is only aware of BundleDeployment resources that are created for the cluster
* the agent is managing.
*/
export interface IBundleDeployment {
/**
* APIVersion defines the versioned schema of this representation of an object.
* Servers should convert recognized schemas to the latest internal value, and
* may reject unrecognized values.
* More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
*/
"apiVersion": "fleet.cattle.io/v1alpha1";
/**
* Kind is a string value representing the REST resource this object represents.
* Servers may infer this from the endpoint the client submits requests to.
* Cannot be updated.
* In CamelCase.
* More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
*/
"kind": "BundleDeployment";
"metadata"?: IObjectMeta;
"spec"?: {
/**
* CorrectDrift specifies how drift correction should work.
*/
"correctDrift"?: {
/**
* Enabled correct drift if true.
*/
"enabled"?: boolean;
/**
* Force helm rollback with --force option will be used if true. This will try to recreate all resources in the release.
*/
"force"?: boolean;
/**
* KeepFailHistory keeps track of failed rollbacks in the helm history.
*/
"keepFailHistory"?: boolean;
};
/**
* DependsOn refers to the bundles which must be ready before this bundle can be deployed.
*/
"dependsOn"?: Array<{
/**
* Name of the bundle.
*/
"name"?: string;
/**
* Selector matching bundle's labels.
*/
"selector"?: {
/**
* matchExpressions is a list of label selector requirements. The requirements are ANDed.
*/
"matchExpressions"?: Array<{
/**
* key is the label key that the selector applies to.
*/
"key": string;
/**
* operator represents a key's relationship to a set of values.
* Valid operators are In, NotIn, Exists and DoesNotExist.
*/
"operator": string;
/**
* 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.
*/
"values"?: Array<string>;
}>;
/**
* 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.
*/
"matchLabels"?: Record<string, string>;
};
}>;
/**
* DeploymentID is the ID of the currently applied deployment.
*/
"deploymentID"?: string;
/**
* OCIContents is true when this deployment's contents is stored in an oci registry
*/
"ociContents"?: boolean;
/**
* Options are the deployment options, that are currently applied.
*/
"options"?: {
/**
* CorrectDrift specifies how drift correction should work.
*/
"correctDrift"?: {
/**
* Enabled correct drift if true.
*/
"enabled"?: boolean;
/**
* Force helm rollback with --force option will be used if true. This will try to recreate all resources in the release.
*/
"force"?: boolean;
/**
* KeepFailHistory keeps track of failed rollbacks in the helm history.
*/
"keepFailHistory"?: boolean;
};
/**
* DefaultNamespace is the namespace to use for resources that do not
* specify a namespace. This field is not used to enforce or lock down
* the deployment to a specific namespace.
*/
"defaultNamespace"?: string;
/**
* DeleteCRDResources deletes CRDs. Warning! this will also delete all your Custom Resources.
*/
"deleteCRDResources"?: boolean;
/**
* DeleteNamespace can be used to delete the deployed namespace when removing the bundle
*/
"deleteNamespace"?: boolean;
/**
* Diff can be used to ignore the modified state of objects which are amended at runtime.
*/
"diff"?: {
/**
* ComparePatches match a resource and remove fields from the check for modifications.
*/
"comparePatches"?: Array<{
/**
* APIVersion is the apiVersion of the resource to match.
*/
"apiVersion"?: string;
/**
* JSONPointers ignore diffs at a certain JSON path.
*/
"jsonPointers"?: Array<string>;
/**
* Kind is the kind of the resource to match.
*/
"kind"?: string;
/**
* Name is the name of the resource to match.
*/
"name"?: string;
/**
* Namespace is the namespace of the resource to match.
*/
"namespace"?: string;
/**
* Operations remove a JSON path from the resource.
*/
"operations"?: Array<{
/**
* Op is usually "remove"
*/
"op"?: string;
/**
* Path is the JSON path to remove.
*/
"path"?: string;
/**
* Value is usually empty.
*/
"value"?: string;
}>;
}>;
};
/**
* ForceSyncGeneration is used to force a redeployment
*/
"forceSyncGeneration"?: number;
/**
* Helm options for the deployment, like the chart name, repo and values.
*/
"helm"?: {
/**
* Atomic sets the --atomic flag when Helm is performing an upgrade
*/
"atomic"?: boolean;
/**
* Chart can refer to any go-getter URL or OCI registry based helm
* chart URL. The chart will be downloaded.
*/
"chart"?: string;
/**
* DisableDNS can be used to customize Helm's EnableDNS option, which Fleet sets to `true` by default.
*/
"disableDNS"?: boolean;
/**
* DisableDependencyUpdate allows skipping chart dependencies update
*/
"disableDependencyUpdate"?: boolean;
/**
* DisablePreProcess disables template processing in values
*/
"disablePreProcess"?: boolean;
/**
* Force allows to override immutable resources. This could be dangerous.
*/
"force"?: boolean;
/**
* MaxHistory limits the maximum number of revisions saved per release by Helm.
*/
"maxHistory"?: number;
/**
* ReleaseName sets a custom release name to deploy the chart as. If
* not specified a release name will be generated by combining the
* invoking GitRepo.name + GitRepo.path.
* @maxLength 53
* @pattern ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
*/
"releaseName"?: string;
/**
* Repo is the name of the HTTPS helm repo to download the chart from.
*/
"repo"?: string;
/**
* SkipSchemaValidation allows skipping schema validation against the chart values
*/
"skipSchemaValidation"?: boolean;
/**
* TakeOwnership makes helm skip the check for its own annotations
*/
"takeOwnership"?: boolean;
/**
* TimeoutSeconds is the time to wait for Helm operations.
*/
"timeoutSeconds"?: number;
/**
* Values passed to Helm. It is possible to specify the keys and values
* as go template strings.
*/
"values"?: {};
/**
* ValuesFiles is a list of files to load values from.
*/
"valuesFiles"?: Array<string>;
/**
* ValuesFrom loads the values from configmaps and secrets.
*/
"valuesFrom"?: Array<{
/**
* The reference to a config map with release values.
*/
"configMapKeyRef"?: {
"key"?: string;
/**
* Name of a resource in the same namespace as the referent.
*/
"name"?: string;
"namespace"?: string;
};
/**
* The reference to a secret with release values.
*/
"secretKeyRef"?: {
"key"?: string;
/**
* Name of a resource in the same namespace as the referent.
*/
"name"?: string;
"namespace"?: string;
};
}>;
/**
* Version of the chart to download
*/
"version"?: string;
/**
* WaitForJobs if set and timeoutSeconds provided, will wait until all
* Jobs have been completed before marking the GitRepo as ready. It
* will wait for as long as timeoutSeconds
*/
"waitForJobs"?: boolean;
};
/**
* IgnoreOptions can be used to ignore fields when monitoring the bundle.
*/
"ignore"?: {
/**
* Conditions is a list of conditions to be ignored when monitoring the Bundle.
*/
"conditions"?: Array<Record<string, string>>;
};
/**
* KeepResources can be used to keep the deployed resources when removing the bundle
*/
"keepResources"?: boolean;
/**
* Kustomize options for the deployment, like the dir containing the
* kustomization.yaml file.
*/
"kustomize"?: {
/**
* Dir points to a custom folder for kustomize resources. This folder must contain
* a kustomization.yaml file.
*/
"dir"?: string;
};
/**
* TargetNamespace if present will assign all resource to this
* namespace and if any cluster scoped resource exists the deployment
* will fail.
*/
"namespace"?: string;
/**
* NamespaceAnnotations are annotations that will be appended to the namespace created by Fleet.
*/
"namespaceAnnotations"?: Record<string, string>;
/**
* NamespaceLabels are labels that will be appended to the namespace created by Fleet.
*/
"namespaceLabels"?: Record<string, string>;
/**
* ServiceAccount which will be used to perform this deployment.
*/
"serviceAccount"?: string;
/**
* YAML options, if using raw YAML these are names that map to
* overlays/{name} files that will be used to replace or patch a resource.
*/
"yaml"?: {
/**
* Overlays is a list of names that maps to folders in "overlays/".
* If you wish to customize the file ./subdir/resource.yaml then a file
* ./overlays/myoverlay/subdir/resource.yaml will replace the base
* file.
* A file named ./overlays/myoverlay/subdir/resource_patch.yaml will patch the base file.
*/
"overlays"?: Array<string>;
};
};
/**
* Paused if set to true, will stop any BundleDeployments from being
* updated. If true, BundleDeployments will be marked as out of sync
* when changes are detected.
*/
"paused"?: boolean;
/**
* StagedDeploymentID is the ID of the staged deployment.
*/
"stagedDeploymentID"?: string;
/**
* StagedOptions are the deployment options, that are staged for
* the next deployment.
*/
"stagedOptions"?: {
/**
* CorrectDrift specifies how drift correction should work.
*/
"correctDrift"?: {
/**
* Enabled correct drift if true.
*/
"enabled"?: boolean;
/**
* Force helm rollback with --force option will be used if true. This will try to recreate all resources in the release.
*/
"force"?: boolean;
/**
* KeepFailHistory keeps track of failed rollbacks in the helm history.
*/
"keepFailHistory"?: boolean;
};
/**
* DefaultNamespace is the namespace to use for resources that do not
* specify a namespace. This field is not used to enforce or lock down
* the deployment to a specific namespace.
*/
"defaultNamespace"?: string;
/**
* DeleteCRDResources deletes CRDs. Warning! this will also delete all your Custom Resources.
*/
"deleteCRDResources"?: boolean;
/**
* DeleteNamespace can be used to delete the deployed namespace when removing the bundle
*/
"deleteNamespace"?: boolean;
/**
* Diff can be used to ignore the modified state of objects which are amended at runtime.
*/
"diff"?: {
/**
* ComparePatches match a resource and remove fields from the check for modifications.
*/
"comparePatches"?: Array<{
/**
* APIVersion is the apiVersion of the resource to match.
*/
"apiVersion"?: string;
/**
* JSONPointers ignore diffs at a certain JSON path.
*/
"jsonPointers"?: Array<string>;
/**
* Kind is the kind of the resource to match.
*/
"kind"?: string;
/**
* Name is the name of the resource to match.
*/
"name"?: string;
/**
* Namespace is the namespace of the resource to match.
*/
"namespace"?: string;
/**
* Operations remove a JSON path from the resource.
*/
"operations"?: Array<{
/**
* Op is usually "remove"
*/
"op"?: string;
/**
* Path is the JSON path to remove.
*/
"path"?: string;
/**
* Value is usually empty.
*/
"value"?: string;
}>;
}>;
};
/**
* ForceSyncGeneration is used to force a redeployment
*/
"forceSyncGeneration"?: number;
/**
* Helm options for the deployment, like the chart name, repo and values.
*/
"helm"?: {
/**
* Atomic sets the --atomic flag when Helm is performing an upgrade
*/
"atomic"?: boolean;
/**
* Chart can refer to any go-getter URL or OCI registry based helm
* chart URL. The chart will be downloaded.
*/
"chart"?: string;
/**
* DisableDNS can be used to customize Helm's EnableDNS option, which Fleet sets to `true` by default.
*/
"disableDNS"?: boolean;
/**
* DisableDependencyUpdate allows skipping chart dependencies update
*/
"disableDependencyUpdate"?: boolean;
/**
* DisablePreProcess disables template processing in values
*/
"disablePreProcess"?: boolean;
/**
* Force allows to override immutable resources. This could be dangerous.
*/
"force"?: boolean;
/**
* MaxHistory limits the maximum number of revisions saved per release by Helm.
*/
"maxHistory"?: number;
/**
* ReleaseName sets a custom release name to deploy the chart as. If
* not specified a release name will be generated by combining the
* invoking GitRepo.name + GitRepo.path.
* @maxLength 53
* @pattern ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
*/
"releaseName"?: string;
/**
* Repo is the name of the HTTPS helm repo to download the chart from.
*/
"repo"?: string;
/**
* SkipSchemaValidation allows skipping schema validation against the chart values
*/
"skipSchemaValidation"?: boolean;
/**
* TakeOwnership makes helm skip the check for its own annotations
*/
"takeOwnership"?: boolean;
/**
* TimeoutSeconds is the time to wait for Helm operations.
*/
"timeoutSeconds"?: number;
/**
* Values passed to Helm. It is possible to specify the keys and values
* as go template strings.
*/
"values"?: {};
/**
* ValuesFiles is a list of files to load values from.
*/
"valuesFiles"?: Array<string>;
/**
* ValuesFrom loads the values from configmaps and secrets.
*/
"valuesFrom"?: Array<{
/**
* The reference to a config map with release values.
*/
"configMapKeyRef"?: {
"key"?: string;
/**
* Name of a resource in the same namespace as the referent.
*/
"name"?: string;
"namespace"?: string;
};
/**
* The reference to a secret with release values.
*/
"secretKeyRef"?: {
"key"?: string;
/**
* Name of a resource in the same namespace as the referent.
*/
"name"?: string;
"namespace"?: string;
};
}>;
/**
* Version of the chart to download
*/
"version"?: string;
/**
* WaitForJobs if set and timeoutSeconds provided, will wait until all
* Jobs have been completed before marking the GitRepo as ready. It
* will wait for as long as timeoutSeconds
*/
"waitForJobs"?: boolean;
};
/**
* IgnoreOptions can be used to ignore fields when monitoring the bundle.
*/
"ignore"?: {
/**
* Conditions is a list of conditions to be ignored when monitoring the Bundle.
*/
"conditions"?: Array<Record<string, string>>;
};
/**
* KeepResources can be used to keep the deployed resources when removing the bundle
*/
"keepResources"?: boolean;
/**
* Kustomize options for the deployment, like the dir containing the
* kustomization.yaml file.
*/
"kustomize"?: {
/**
* Dir points to a custom folder for kustomize resources. This folder must contain
* a kustomization.yaml file.
*/
"dir"?: string;
};
/**
* TargetNamespace if present will assign all resource to this
* namespace and if any cluster scoped resource exists the deployment
* will fail.
*/
"namespace"?: string;
/**
* NamespaceAnnotations are annotations that will be appended to the namespace created by Fleet.
*/
"namespaceAnnotations"?: Record<string, string>;
/**
* NamespaceLabels are labels that will be appended to the namespace created by Fleet.
*/
"namespaceLabels"?: Record<string, string>;
/**
* ServiceAccount which will be used to perform this deployment.
*/
"serviceAccount"?: string;
/**
* YAML options, if using raw YAML these are names that map to
* overlays/{name} files that will be used to replace or patch a resource.
*/
"yaml"?: {
/**
* Overlays is a list of names that maps to folders in "overlays/".
* If you wish to customize the file ./subdir/resource.yaml then a file
* ./overlays/myoverlay/subdir/resource.yaml will replace the base
* file.
* A file named ./overlays/myoverlay/subdir/resource_patch.yaml will patch the base file.
*/
"overlays"?: Array<string>;
};
};
};
"status"?: {
"appliedDeploymentID"?: string;
"conditions"?: Array<{
/**
* Last time the condition transitioned from one status to another.
*/
"lastTransitionTime"?: string;
/**
* The last time this condition was updated.
*/
"lastUpdateTime"?: string;
/**
* Human-readable message indicating details about last transition
*/
"message"?: string;
/**
* The reason for the condition's last transition.
*/
"reason"?: string;
/**
* Status of the condition, one of True, False, Unknown.
*/
"status": string;
/**
* Type of cluster condition.
*/
"type": string;
}>;
"display"?: {
"deployed"?: string;
"monitored"?: string;
"state"?: string;
};
"modifiedStatus"?: Array<{
"apiVersion"?: string;
"delete"?: boolean;
"kind"?: string;
"missing"?: boolean;
"name"?: string;
"namespace"?: string;
"patch"?: string;
}>;
"nonModified"?: boolean;
"nonReadyStatus"?: Array<{
"apiVersion"?: string;
"kind"?: string;
"name"?: string;
"namespace"?: string;
"summary"?: {
"error"?: boolean;
"message"?: Array<string>;
"state"?: string;
"transitioning"?: boolean;
};
/**
* UID is a type that holds unique ID values, including UUIDs. Because we
* don't ONLY use UUIDs, this is an alias to string. Being a type captures
* intent and helps make sure that UIDs and names do not get conflated.
*/
"uid"?: string;
}>;
"ready"?: boolean;
"release"?: string;
/**
* Resources lists the metadata of resources that were deployed
* according to the helm release history.
*/
"resources"?: Array<{
"apiVersion"?: string;
/**
*
* @format date-time
*/
"createdAt"?: string | null;
"kind"?: string;
"name"?: string;
"namespace"?: string;
}>;
"syncGeneration"?: number;
};
}
/**
* BundleDeployment is used internally by Fleet and should not be used directly.
* When a Bundle is deployed to a cluster an instance of a Bundle is called a
* BundleDeployment. A BundleDeployment represents the state of that Bundle on
* a specific cluster with its cluster-specific customizations. The Fleet agent
* is only aware of BundleDeployment resources that are created for the cluster
* the agent is managing.
*/
export declare class BundleDeployment extends Model<IBundleDeployment> implements IBundleDeployment {
"apiVersion": IBundleDeployment["apiVersion"];
"kind": IBundleDeployment["kind"];
"metadata"?: IBundleDeployment["metadata"];
"spec"?: IBundleDeployment["spec"];
"status"?: IBundleDeployment["status"];
static apiVersion: IBundleDeployment["apiVersion"];
static kind: IBundleDeployment["kind"];
static is: import("@soft-stech/base").TypeMetaGuard<IBundleDeployment>;
constructor(data?: ModelData<IBundleDeployment>);
}