import { StackType } from '../types'; const dockerTexts = { editor: { placeholder: 'Define or paste the content of your docker compose file here', description: (
You can get more information about Compose file format in the{' '} official documentation .
), }, upload: 'You can upload a Compose file from your computer.', } as const; export const textByType = { [StackType.DockerCompose]: dockerTexts, [StackType.DockerSwarm]: dockerTexts, [StackType.Kubernetes]: { editor: { placeholder: 'Define or paste the content of your manifest file here', description: ( <>Templates allow deploying any kind of Kubernetes resource (Deployment, Secret, ConfigMap...)
You can get more information about Kubernetes file format in the{' '} official documentation .
> ), }, upload: 'You can upload a Manifest file from your computer.', }, } as const;