diff --git a/VERSION b/VERSION index 08bfd0643..ecb21862b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.5.0-SNAPSHOT +7.6.0-SNAPSHOT diff --git a/arbitrary-users-patch/base_images b/arbitrary-users-patch/base_images index 9e26d0c03..4a9d9ccaa 100644 --- a/arbitrary-users-patch/base_images +++ b/arbitrary-users-patch/base_images @@ -10,3 +10,4 @@ che-nodejs8-centos registry.centos.org/che-stacks/centos-nodejs che-php-7 eclipse/php:7.1-che7 che-python-3.6 centos/python-36-centos7:1 che-python-3.7 python:3.7.4-slim +che-quarkus quay.io/quarkus/centos-quarkus-maven:19.2.1 diff --git a/devfiles/che4z/devfile.yaml b/devfiles/che4z/devfile.yaml new file mode 100644 index 000000000..5cb20af08 --- /dev/null +++ b/devfiles/che4z/devfile.yaml @@ -0,0 +1,73 @@ +--- +apiVersion: 1.0.0 +metadata: + generateName: che4z- +components: + - + type: chePlugin + id: broadcommfd/cobol-language-support/latest + - + type: chePlugin + id: bitlang/cobol/latest + - + type: chePlugin + id: broadcommfd/explorer-for-endevor/latest + - + id: eclipse/che-machine-exec-plugin/7.3.0 + type: chePlugin + - + id: eclipse/che-theia/7.3.0 + type: cheEditor + - + alias: zowe-cli + type: kubernetes + mountSources: true + referenceContent: | + kind: List + items: + - + apiVersion: v1 + kind: Pod + metadata: + name: zowe + spec: + volumes: + - name: zowe + persistentVolumeClaim: + claimName: zowe-claim + containers: + - + image: 'ca-docker-brightside-docker.bintray.io/cli-mainframe-basic-stack:2019-11-19T15-56-35' + env: + - name: THEIA_PLUGINS + value: local-dir:///plugins + - name: ZOWE_CLI_HOME + value: /home/user/.zowe + name: cli + resources: + limits: + memory: 1024Mi + volumeMounts: + - mountPath: /projects + name: projects + - mountPath: /home/user/.zowe + name: zowe + initContainers: + - + name: plugin-container + image: 'ca-docker-brightside-docker.bintray.io/cli-mainframe-basic-plugins:2019-11-19T15-56-35' + command: ["/bin/sh", "-c", "if [ -z \"$(ls -1A /.zowe)\" ]; then cp -r /.zowe_init/* /.zowe; fi"] + volumeMounts: + - mountPath: /.zowe + name: zowe + - + apiVersion: v1 + kind: PersistentVolumeClaim + metadata: + name: zowe-claim + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 128Mi diff --git a/devfiles/che4z/meta.yaml b/devfiles/che4z/meta.yaml new file mode 100644 index 000000000..8503a2c6c --- /dev/null +++ b/devfiles/che4z/meta.yaml @@ -0,0 +1,6 @@ +--- +displayName: Mainframe Basic Stack +description: Mainframe Basic Stack +tags: ["Che4z", "Zowe", "mainframe", "Endevor", "explorer", "dataset", "COBOL", "JCL", "zOS", "USS"] +icon: https://www.eclipse.org/che/images/logo-eclipseche.svg +globalMemoryLimit: 2280Mi