Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Releases: SAP-archive/xsk

0.9.0

29 Sep 14:03
Compare
Choose a tag to compare

XSK - 0.9.0

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

Cloud Native Buildpacks

Pack

Available Buildpack Builders:

Building Docker Image with pack:

pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.9.0 <my-org>/<my-repository>

Note: The command will package all sub-folders (project1, project2, etc.) into a XSK docker image with the application sources.

Cloud Foundry - SAP Java Buildpack

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Kpack

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: xsk-store
spec:
  sources:
  - image: dirigiblelabs/buildpacks-xsk:0.9.0
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/buildpacks-stack-build-xsk-kyma:0.9.0
  runImage:
    image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.9.0
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: xsk-builder
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: xsk-stack
    kind: ClusterStack
  store:
    name: xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/buildpacks-xsk

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: xsk-builder
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.8.2

16 Sep 08:56
Compare
Choose a tag to compare

XSK - 0.8.2

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

Cloud Native Buildpacks

Pack

Available Buildpack Builders:

Building Docker Image with pack:

pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.8.2 <my-org>/<my-repository>

Note: The command will package all sub-folders (project1, project2, etc.) into a XSK docker image with the application sources.

Cloud Foundry - SAP Java Buildpack

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Kpack

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: xsk-store
spec:
  sources:
  - image: dirigiblelabs/buildpacks-xsk:0.8.2
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/buildpacks-stack-build-xsk-kyma:0.8.2
  runImage:
    image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.8.2
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: xsk-builder
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: xsk-stack
    kind: ClusterStack
  store:
    name: xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/buildpacks-xsk

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: xsk-builder
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.8.1

30 Aug 14:02
Compare
Choose a tag to compare

XSK - 0.8.1

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

Cloud Native Buildpacks

Pack

Available Buildpack Builders:

Building Docker Image with pack:

pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.8.1 <my-org>/<my-repository>

Note: The command will package all sub-folders (project1, project2, etc.) into a XSK docker image with the application sources.

Cloud Foundry - SAP Java Buildpack

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Kpack

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: xsk-store
spec:
  sources:
  - image: dirigiblelabs/buildpacks-xsk:0.8.1
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/buildpacks-stack-build-xsk-kyma:0.8.1
  runImage:
    image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.8.1
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: xsk-builder
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: xsk-stack
    kind: ClusterStack
  store:
    name: xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/buildpacks-xsk

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: xsk-builder
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.8.0

30 Aug 06:40
Compare
Choose a tag to compare

XSK - 0.8.0

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

Cloud Native Buildpacks

Pack

Available Buildpack Builders:

Building Docker Image with pack:

pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.8.0 <my-org>/<my-repository>

Note: The command will package all sub-folders (project1, project2, etc.) into a XSK docker image with the application sources.

Cloud Foundry - SAP Java Buildpack

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Kpack

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: xsk-store
spec:
  sources:
  - image: dirigiblelabs/buildpacks-xsk:0.8.0
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/buildpacks-stack-build-xsk-kyma:0.8.0
  runImage:
    image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.8.0
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: xsk-builder
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: xsk-stack
    kind: ClusterStack
  store:
    name: xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/buildpacks-xsk

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: xsk-builder
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.7.0

03 Aug 14:04
Compare
Choose a tag to compare

XSK - 0.7.0

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

Cloud Native Buildpacks

Pack

Available Buildpack Builders:

Building Docker Image with pack:

pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.7.0 <my-org>/<my-repository>

Note: The command will package all sub-folders (project1, project2, etc.) into a XSK docker image with the application sources.

Cloud Foundry - SAP Java Buildpack

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Kpack

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: xsk-store
spec:
  sources:
  - image: dirigiblelabs/buildpacks-xsk:0.7.0
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/buildpacks-stack-build-xsk-kyma:0.7.0
  runImage:
    image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.7.0
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: xsk-builder
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: xsk-stack
    kind: ClusterStack
  store:
    name: xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/buildpacks-xsk

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: xsk-builder
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.6.3

30 Jul 17:38
Compare
Choose a tag to compare

XSK - 0.6.3

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

Cloud Native Buildpacks

Pack

Available Buildpack Builders:

Building Docker Image with pack:

pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.6.3 <my-org>/<my-repository>

Note: The command will package all sub-folders (project1, project2, etc.) into a XSK docker image.

Cloud Foundry - SAP Java Buildpack

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Kpack

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: xsk-store
spec:
  sources:
  - image: dirigiblelabs/buildpacks-xsk:0.6.3
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/buildpacks-stack-build-xsk-kyma:0.6.3
  runImage:
    image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.6.3
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: xsk-builder
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: xsk-stack
    kind: ClusterStack
  store:
    name: xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/buildpacks-xsk

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: xsk-builder
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.6.2

06 Jul 14:44
Compare
Choose a tag to compare

XSK - 0.6.2

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

Available for download *.zip samples:

SAP Java Buildpack Usage

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Buildpack

Prerequisites

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: kneo-xsk-store
spec:
  sources:
  - image: dirigiblelabs/kneo-xsk-buildpack:0.6.2
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: kneo-xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/kneo-xsk-stack-build:0.6.2
  runImage:
    image: dirigiblelabs/kneo-xsk-stack-run:0.6.2
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: kneo-xsk
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: kneo-xsk-stack
    kind: ClusterStack
  store:
    name: kneo-xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/kneo-xsk-buildpack

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: kneo-xsk
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.6.1

02 Jul 07:40
Compare
Choose a tag to compare

XSK - 0.6.1

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

SAP Java Buildpack Usage

manifest.yaml

applications:
- name: <application-name>
  host: <host>
  memory: 2G
  buildpack: sap_java_buildpack
  path: ROOT.war
  env:
    JBP_CONFIG_COMPONENTS: "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
    JBP_CONFIG_SAP_MACHINE_JRE: 'jre: { version: 11.+ }'
  services:
    - <service-binding>

Buildpack

Prerequisites

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: kneo-xsk-store
spec:
  sources:
  - image: dirigiblelabs/kneo-xsk-buildpack:0.6.1
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: kneo-xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/kneo-xsk-stack-build:0.6.1
  runImage:
    image: dirigiblelabs/kneo-xsk-stack-run:0.6.1
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: kneo-xsk
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: kneo-xsk-stack
    kind: ClusterStack
  store:
    name: kneo-xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/kneo-xsk-buildpack

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: kneo-xsk
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.6.0

30 Jun 07:52
Compare
Choose a tag to compare

XSK - 0.6.0

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

XSK - 0.6.0 - Buildpack

Prerequisites

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: kneo-xsk-store
spec:
  sources:
  - image: dirigiblelabs/kneo-xsk-buildpack:0.6.0
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: kneo-xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/kneo-xsk-stack-build:0.6.0
  runImage:
    image: dirigiblelabs/kneo-xsk-stack-run:0.6.0
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: kneo-xsk
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: kneo-xsk-stack
    kind: ClusterStack
  store:
    name: kneo-xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/kneo-xsk-buildpack

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: kneo-xsk
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)

0.5.0

31 May 15:44
Compare
Choose a tag to compare

XSK - 0.5.0

Docker images:

Available for download *.war packages:

Note: Unzip the downloaded file to extract the ROOT.war binary.

For more information go to https://www.dirigible.io/help/setup/.

XSK - 0.5.0 - Buildpack

Prerequisites

  • Install Kpack on your Kubernetes/Kyma cluster
  • Create ClusterStore, ClusterStack and Builder:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
  name: kneo-xsk-store
spec:
  sources:
  - image: dirigiblelabs/kneo-xsk-buildpack:0.5.0
---
apiVersion: kpack.io/v1alpha1
kind: ClusterStack
metadata:
  name: kneo-xsk-stack
spec:
  id: com.sap.kneo.xsk
  buildImage:
    image: dirigiblelabs/kneo-xsk-stack-build:0.5.0
  runImage:
    image: dirigiblelabs/kneo-xsk-stack-run:0.5.0
---
apiVersion: kpack.io/v1alpha1
kind: Builder
metadata:
  name: kneo-xsk
spec:
  serviceAccount: <your-service-account>
  tag: <your-docker-organization>/<your-docker-builder-repository>
  stack:
    name: kneo-xsk-stack
    kind: ClusterStack
  store:
    name: kneo-xsk-store
    kind: ClusterStore
  order:
  - group:
    - id: dirigiblelabs/kneo-xsk-buildpack

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-docker-builder-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-builder)

Usage

apiVersion: kpack.io/v1alpha1
kind: Image
metadata:
  name: xsk-application
  namespace: default
spec:
  tag: <your-docker-organization>/<your-application-docker-image-repository>
  serviceAccount: <your-service-account>
  builder:
    name: kneo-xsk
    kind: Builder
  source:
    blob:
      url: https://github.com/SAP/xsk/raw/main/samples/products.zip

Note: Replace <your-service-account> with your ServiceAccount (sample could be found here).

Note: Also replace <your-docker-organization>/<your-application-docker-image-repository> with your Docker Repository, where the Docker Image Builder will be hosted (e.g. my-organization/my-application)