2022-04-04 11:22:00 +05:30
|
|
|
import { s__ } from '~/locale';
|
|
|
|
|
2022-06-21 17:19:12 +05:30
|
|
|
export const K8S_OPTION = s__('DeploymentTarget|Kubernetes (GKE, EKS, OpenShift, and so on)');
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
export const DEPLOYMENT_TARGET_SELECTIONS = [
|
2022-06-21 17:19:12 +05:30
|
|
|
K8S_OPTION,
|
2022-04-04 11:22:00 +05:30
|
|
|
s__('DeploymentTarget|Managed container runtime (Fargate, Cloud Run, DigitalOcean App)'),
|
|
|
|
s__('DeploymentTarget|Self-managed container runtime (Podman, Docker Swarm, Docker Compose)'),
|
|
|
|
s__('DeploymentTarget|Heroku'),
|
|
|
|
s__('DeploymentTarget|Virtual machine (for example, EC2)'),
|
|
|
|
s__('DeploymentTarget|Mobile app store'),
|
|
|
|
s__('DeploymentTarget|Registry (package or container)'),
|
|
|
|
s__('DeploymentTarget|Infrastructure provider (Terraform, Cloudformation, and so on)'),
|
|
|
|
s__('DeploymentTarget|Serverless backend (Lambda, Cloud functions)'),
|
|
|
|
s__('DeploymentTarget|GitLab Pages'),
|
|
|
|
s__('DeploymentTarget|Other hosting service'),
|
|
|
|
s__('DeploymentTarget|No deployment planned'),
|
|
|
|
];
|
|
|
|
|
|
|
|
export const NEW_PROJECT_FORM = 'new_project';
|
|
|
|
export const DEPLOYMENT_TARGET_LABEL = 'new_project_deployment_target';
|
|
|
|
export const DEPLOYMENT_TARGET_EVENT = 'select_deployment_target';
|
2022-06-21 17:19:12 +05:30
|
|
|
export const VISIT_DOCS_EVENT = 'visit_docs';
|