mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
* feat(stack): UI updates in git repo deployment method for k8s EE-640. (#5097) * feat(stack): UI updates in git repo deployment method for k8s EE-640. * feat(stack): supports the combination of GIT + COMPOSE. * feat(stack): rename variable * feat(stack): add git repo deployment method for k8s EE-638 * cleanup * update payload validation rules * make repo ref optional in frond end Co-authored-by: fhanportainer <79428273+fhanportainer@users.noreply.github.com>
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
export const KubernetesDeployManifestTypes = Object.freeze({
|
|
KUBERNETES: 1,
|
|
COMPOSE: 2,
|
|
});
|
|
|
|
export const KubernetesDeployBuildMethods = Object.freeze({
|
|
GIT: 1,
|
|
WEB_EDITOR: 2,
|
|
});
|
|
|
|
export const KubernetesDeployRequestMethods = Object.freeze({
|
|
REPOSITORY: 'repository',
|
|
STRING: 'string',
|
|
});
|