mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 06:19:41 +02:00
feat(edge/templates): introduce edge specific settings [EE-6276] (#10609)
This commit is contained in:
parent
68950fbb24
commit
e43d076269
42 changed files with 885 additions and 319 deletions
|
@ -0,0 +1,135 @@
|
|||
import { useMutation } from 'react-query';
|
||||
|
||||
import { EdgeGroup } from '@/react/edge/edge-groups/types';
|
||||
import { RegistryId } from '@/react/portainer/registries/types';
|
||||
import { Pair } from '@/react/portainer/settings/types';
|
||||
import {
|
||||
GitFormModel,
|
||||
RelativePathModel,
|
||||
} from '@/react/portainer/gitops/types';
|
||||
|
||||
import { DeploymentType, StaggerConfig } from '../../types';
|
||||
|
||||
import { createStackFromFile } from './createStackFromFile';
|
||||
import { createStackFromFileContent } from './createStackFromFileContent';
|
||||
import { createStackFromGit } from './createStackFromGit';
|
||||
|
||||
export function useCreateEdgeStack() {
|
||||
return useMutation(createEdgeStack);
|
||||
}
|
||||
|
||||
type BasePayload = {
|
||||
/** Name of the stack */
|
||||
name: string;
|
||||
/** Content of the Stack file */
|
||||
/** List of identifiers of EdgeGroups */
|
||||
edgeGroups: Array<EdgeGroup['Id']>;
|
||||
/** Deployment type to deploy this stack */
|
||||
deploymentType: DeploymentType;
|
||||
/** List of Registries to use for this stack */
|
||||
registries?: Array<RegistryId>;
|
||||
/** Uses the manifest's namespaces instead of the default one */
|
||||
useManifestNamespaces?: boolean;
|
||||
/** Pre Pull image */
|
||||
prePullImage?: boolean;
|
||||
/** Retry deploy */
|
||||
retryDeploy?: boolean;
|
||||
/** List of environment variables */
|
||||
envVars?: Array<Pair>;
|
||||
/** Configuration for stagger updates */
|
||||
staggerConfig?: StaggerConfig;
|
||||
};
|
||||
|
||||
/**
|
||||
* Payload for creating an EdgeStack from a string
|
||||
*/
|
||||
export type CreateEdgeStackPayload =
|
||||
| {
|
||||
method: 'file';
|
||||
payload: BasePayload & {
|
||||
/** File to upload */
|
||||
file: File;
|
||||
/** Optional webhook configuration */
|
||||
webhook?: string;
|
||||
};
|
||||
}
|
||||
| {
|
||||
method: 'string';
|
||||
payload: BasePayload & {
|
||||
/** Content of the Stack file */
|
||||
fileContent: string;
|
||||
/** Optional webhook configuration */
|
||||
webhook?: string;
|
||||
};
|
||||
}
|
||||
| {
|
||||
method: 'git';
|
||||
payload: BasePayload & {
|
||||
git: GitFormModel;
|
||||
relativePathSettings?: RelativePathModel;
|
||||
};
|
||||
};
|
||||
|
||||
function createEdgeStack({ method, payload }: CreateEdgeStackPayload) {
|
||||
switch (method) {
|
||||
case 'file':
|
||||
return createStackFromFile({
|
||||
DeploymentType: payload.deploymentType,
|
||||
EdgeGroups: payload.edgeGroups,
|
||||
Name: payload.name,
|
||||
file: payload.file,
|
||||
EnvVars: payload.envVars,
|
||||
PrePullImage: payload.prePullImage,
|
||||
Registries: payload.registries,
|
||||
RetryDeploy: payload.retryDeploy,
|
||||
StaggerConfig: payload.staggerConfig,
|
||||
UseManifestNamespaces: payload.useManifestNamespaces,
|
||||
Webhook: payload.webhook,
|
||||
});
|
||||
case 'git':
|
||||
return createStackFromGit({
|
||||
deploymentType: payload.deploymentType,
|
||||
edgeGroups: payload.edgeGroups,
|
||||
name: payload.name,
|
||||
envVars: payload.envVars,
|
||||
prePullImage: payload.prePullImage,
|
||||
registries: payload.registries,
|
||||
retryDeploy: payload.retryDeploy,
|
||||
staggerConfig: payload.staggerConfig,
|
||||
useManifestNamespaces: payload.useManifestNamespaces,
|
||||
repositoryUrl: payload.git.RepositoryURL,
|
||||
repositoryReferenceName: payload.git.RepositoryReferenceName,
|
||||
filePathInRepository: payload.git.ComposeFilePathInRepository,
|
||||
repositoryAuthentication: payload.git.RepositoryAuthentication,
|
||||
repositoryUsername: payload.git.RepositoryUsername,
|
||||
repositoryPassword: payload.git.RepositoryPassword,
|
||||
repositoryGitCredentialId: payload.git.RepositoryGitCredentialID,
|
||||
filesystemPath: payload.relativePathSettings?.FilesystemPath,
|
||||
supportRelativePath: payload.relativePathSettings?.SupportRelativePath,
|
||||
perDeviceConfigsGroupMatchType:
|
||||
payload.relativePathSettings?.PerDeviceConfigsGroupMatchType,
|
||||
perDeviceConfigsMatchType:
|
||||
payload.relativePathSettings?.PerDeviceConfigsMatchType,
|
||||
perDeviceConfigsPath:
|
||||
payload.relativePathSettings?.PerDeviceConfigsPath,
|
||||
tlsSkipVerify: payload.git.TLSSkipVerify,
|
||||
autoUpdate: payload.git.AutoUpdate,
|
||||
});
|
||||
case 'string':
|
||||
return createStackFromFileContent({
|
||||
deploymentType: payload.deploymentType,
|
||||
edgeGroups: payload.edgeGroups,
|
||||
name: payload.name,
|
||||
envVars: payload.envVars,
|
||||
prePullImage: payload.prePullImage,
|
||||
registries: payload.registries,
|
||||
retryDeploy: payload.retryDeploy,
|
||||
staggerConfig: payload.staggerConfig,
|
||||
useManifestNamespaces: payload.useManifestNamespaces,
|
||||
stackFileContent: payload.fileContent,
|
||||
webhook: payload.webhook,
|
||||
});
|
||||
default:
|
||||
throw new Error('Invalid method');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue