0.13.0
XSK - 0.13.0
Docker images:
- dirigiblelabs/xsk - XSK Server.
- dirigiblelabs/xsk-cf - XSK Cloud Foundry.
- dirigiblelabs/xsk-kyma - XSK Kyma.
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:
- products - Products Sample Application.
- api-db - XSJS API $.db.
- api-hdb - XSJS API $.hdb.
- api-import - XSJS API $.import.
- api-jobs - XSJS API $.jobs.
- api-net - XSJS API $.net.
- api-session - XSJS API $.session.
- api-trace - XSJS API $.trace.
- api-util - XSJS API $.util.
- api-web - XSJS API $.web.
- hdb-hdbdd-simple - HDBDD - Simple.
- hdb-hdbsequence-simple - HDBSequence - Simple.
- hdb-hdbstructure-simple - HDBStructure - Simple.
- hdb-hdbtable-simple - HDBTable - Simple.
- hdb-hdbti-simple - HDBTI - Simple.
- hdb-procedure-simple - HDBProcedure - Simple.
- hdb-schema-simple - HDBSchema - Simple.
- hdb-simple - HDB Table.
- hdb-synonym-simple - HDBSynonym - Simple.
- hdb-tablefunction-simple - HDBTableFunction - Simple.
- hdb-view-simple - HDBView - Simple.
- hdi-cube - HDI Cube.
- hdi-ext - HDI Ext.
- hdi-simple - HDI.
- xsjs - XSJS APIs.
- xsjs-simple - XSJS Hello World.
- xsodata-navigations - XSOData - Navigations.
- xsodata-simple - XSOData - Simple.
Cloud Native Buildpacks
Pack
Available Buildpack Builders:
- dirigiblelabs/buildpacks-builder-xsk:0.13.0 - builder for local deployments.
- dirigiblelabs/buildpacks-builder-xsk-kyma:0.13.0 - builder for Kyma ready deployments.
- dirigiblelabs/buildpacks-builder-xsk-cf:0.13.0 - builder for Cloud Foundry ready deployments
Building Docker Image with pack:
pack build --builder dirigiblelabs/buildpacks-builder-xsk:0.13.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
andBuilder
:
apiVersion: kpack.io/v1alpha1
kind: ClusterStore
metadata:
name: xsk-store
spec:
sources:
- image: dirigiblelabs/buildpacks-xsk:0.13.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.13.0
runImage:
image: dirigiblelabs/buildpacks-stack-run-xsk-kyma:0.13.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/releases/download/v0.13.0/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
)