Files
backroad/app/kubernetes/models/deploy.js
fhanportainer 3f700f1b26 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
2021-06-09 15:02:47 +12:00

15 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',
});