mirror of https://github.com/portainer/portainer
23 lines
453 B
JavaScript
23 lines
453 B
JavaScript
export const KubernetesDeployManifestTypes = Object.freeze({
|
|||
KUBERNETES: 1,
|
|||
});
|
|||
|
|||
export const KubernetesDeployBuildMethods = Object.freeze({
|
|||
GIT: 1,
|
|||
WEB_EDITOR: 2,
|
|||
CUSTOM_TEMPLATE: 3,
|
|||
URL: 4,
|
|||
feature(helm): move helm charts inside advance deployments (create from manifest) [EE-5999] (#10395)
|
HELM: 5,
|
||
});
|
|||
|
|||
export const KubernetesDeployRequestMethods = Object.freeze({
|
|||
REPOSITORY: 'repository',
|
|||
STRING: 'string',
|
|||
URL: 'url',
|
|||
});
|
|||
|
|||
export const RepositoryMechanismTypes = Object.freeze({
|
|||
WEBHOOK: 'Webhook',
|
|||
INTERVAL: 'Interval',
|
|||
});
|