| 123456789101112131415161718192021222324 |
- schemaVersion: 2.2.2
- metadata:
- name: python-hello-world
- components:
- - name: python
- container:
- image: registry.redhat.io/devspaces/udi-rhel8:3.16
- memoryLimit: '2Gi'
- memoryRequest: '1Gi'
- cpuLimit: '2'
- cpuRequest: '1'
- mountSources: true
- env:
- - name: KUBEDOCK_ENABLED
- value: 'true'
- commands:
- - id: run
- exec:
- label: "Run the application"
- component: python
- workingDir: ${PROJECTS_ROOT}/python-hello-world
- commandLine: python chatbot.py
- group:
- kind: run
|