Local Kyma installation
Use the following command to run Kubernetes locally via Minikube:
$ ./installation/scripts/minikube.sh --domain "kyma.local" --vm-driver "hyperkit"
Kyma installation requires increased permissions granted by the cluster-admin role. To bind the role to the default ServiceAccount, run the following command:
$ kubectl apply -f ./installation/resources/default-sa-rbac-role.yaml
Wait until the kube-dns
Pod is ready. Run this script to setup Tiller:
$ ./installation/scripts/install-tiller.sh
Configure the Kyma installation using the local configuration file:
$ kubectl apply -f https://github.com/kyma-project/kyma/releases/download/0.6.0/kyma-config-local.yaml
To trigger the installation process, label the kyma-installation
custom resource:
$ kubectl label installation/kyma-installation action=install
Track progress of the installation using the following script:
$ ./installation/scripts/is-installed.sh
Installation on Google Kubernetes Engine
-
Make sure that you have
gcloud
tool installed. Set environment variables for your Google project identifier and your cluster name. You can keep your demo cluster name but your Google project identifier must be changed. Then you can spin up the cluster:export CLUSTER_NAME=demo export PROJECT=YOUR_PROJECT_ID gcloud beta container --project "$PROJECT" clusters \ create "$CLUSTER_NAME" --zone "europe-west1-b" \ --cluster-version "1.10.7" --machine-type "n1-standard-2" \ --addons HorizontalPodAutoscaling,HttpLoadBalancing,KubernetesDashboard
-
Install Tiller:
kubectl apply -f https://raw.githubusercontent.com/kyma-project/kyma/0.6.0/installation/resources/tiller.yaml
-
Download the release and replace the placeholders with the proper values. The placeholders are the upper case variables surrounded by double underscore, such as
__DOMAIN__
. These are the mandatory values to change:__DOMAIN__
which specifies your domain, for examplekyma.example.com
.__TLS_CERT__
which is a PEM format, base64-encoded TLS certifcate.__TLS_KEY__
which is a base64-encoded TLS private key.
If you don't know how to set other values, replace them with an empty string.
You can use this script to set only three mandatory values:
export DOMAIN=kyma.example.com export TLS_CERT=base64_PEM_TLS_certificate export TLS_KEY=base64_TLS_private_key cat kyma-config-cluster.yaml | sed -e "s/__DOMAIN__/$DOMAIN/g" |sed -e "s/__TLS_CERT__/$TLS_CERT/g" | sed -e "s/__TLS_KEY__/$TLS_KEY/g" |sed -e "s/__.*__//g" >my-kyma.yaml
As a result, you get the
my-kyma.yaml
file which you can deploy on the GKE cluster. -
Configure kubectl to use your new cluster, add yourself as the cluster admin, and deploy Kyma installer with your configuration.
gcloud container clusters get-credentials $CLUSTER_NAME --zone europe-west1-b --project $PROJECT kubectl create clusterrolebinding cluster-admin-binding --clusterrole=cluster-admin --user=$(gcloud config get-value account) kubectl apply -f my-kyma.yaml
-
Check if
tiller
andkyma-installer
Pods are up and running. Start the installation process with this command:kubectl label installation/kyma-installation action=install
Watch installation progress:
kubectl logs -n kyma-installer [kyma-installer-pod] -f
-
Configure DNS for two load balancers created by the Kyma installation, which are istio-ingressgateway and core-nginx-ingress-controller. You need the following DNS records:
*.kyma.example.com A EXTERNAL_PUBLIC_IP
gateway.kyma.example.com A REMOTE_ENV_IP
You can use this script to get external IP addresses for load balancers:
export EXTERNAL_PUBLIC_IP=$(kubectl get service -n istio-system istio-ingressgateway -o jsonpath="{.status.loadBalancer.ingress[0].ip}") export REMOTE_ENV_IP=$(kubectl get service -n kyma-system application-connector-nginx-ingress-controller -o jsonpath="{.status.loadBalancer.ingress[0].ip}") gcloud dns --project=$PROJECT record-sets transaction start --zone=$DNS_ZONE gcloud dns --project=$PROJECT record-sets transaction add $EXTERNAL_PUBLIC_IP --name=\*.$DOMAIN. --ttl=60 --type=A --zone=$DNS_ZONE gcloud dns --project=$PROJECT record-sets transaction add $REMOTE_ENV_IP --name=\gateway.$DOMAIN. --ttl=60 --type=A --zone=$DNS_ZONE gcloud dns --project=$PROJECT record-sets transaction execute --zone=$DNS_ZONE
Read this document for more information on installing Kyma.
0.6.0 (2019-01-14)
Console
Documentation
- #2263 Remove redundant ticks from console docs (@michal-hudy)
Committers: 3
- Michal Kempski (@polskikiel)
- Michał Hudy (@michal-hudy)
- Paweł Kosiec (@pkosiec)
0.6.0-rc2 (2019-01-11)
Documentation
- #2231 Release 0.6.0 rc2 (@aszecowka)
CI
- #2231 Release 0.6.0 rc2 (@aszecowka)
Committers: 1
- Adam Szecówka (@aszecowka)
0.6.0-rc1 (2019-01-10)
Application Connector
- #2119 Bump version of Application Broker (@adamwalach)
- #2108 Fix Service Broker labels (@adamwalach)
- #2115 Bump version of connector-service-tests image (@crabtree)
- #2111 Add ca-cert to connector-service-tests image (@crabtree)
- #2094 Align Dockerfiles in connectivity components - bump (@crabtree)
- #2093 Align Dockerfiles in connectivity components (@crabtree)
- #2083 Update images version for ui-api and acceptance tests (@mszostok)
- #2065 Bump images after renaming (@Szymongib)
- #2006 Rename AC components to follow new architecture diagrams - charts (@crabtree)
- #1993 Rename AC components to follow new architecture diagrams (@crabtree)
- #2029 Update and adjust code for Application and ApplicationMapping (@mszostok)
- #2069 Bump connection token handler image (@franpog859)
- #2008 Rename RE to Application - documentation (@tomekpapiernik)
- #1965 Rename tokenrequest CR (@franpog859)
- #2040 Rename REB to AB - stage2 (@adamwalach)
- #2038 Update and adjust ui-api-acceptance code for Application (@polskikiel)
- #2052 Adjust acceptance test after renaming RemoteEnvironment (@mszostok)
- #2005 Renaming Connector Service (@janmedrek)
- #2019 Application Operator: rename Remote Environment to Application (@akgalwas)
- #1996 Rename of Remote Environment to Application - Metadata Service, Proxy Service (@Maladie)
- #1997 Rename Remote Environment to Application (@Szymongib)
- #2028 Add ApplicationMapping to know types in client (@mszostok)
- #2022 Rename REB chart to AB in application connector (@adamwalach)
- #2021 Add ApplicationMapping client (@mszostok)
- #2012 Bump version of Application Operator (@Szymongib)
- #1928 Rename of Remote Environment Controller to Application Operator (@Szymongib)
- #1950 Increase timeout of Connector Service call (@Szymongib)
- #1958 Bump image of Metadata Service and UI API (@Szymongib)
- #1910 Fix Minio related leak in Metadata Service and UI API layer (@Szymongib)
- #1858 Add prow related components for connection-token-handler component (@crabtree)
- #1867 Add prow related files for proxy-service component (@crabtree)
- #1852 Migrate RE Controller and RE Controller Tests to Prow (@Szymongib)
- #1860 Migrate Metadata Service and Metadata Service Tests to Prow (@Szymongib)
- #1847 Migrate Connector Service and Connector Service Tests to Prow (@Szymongib)
- #1854 Running AC component tests on local deployment - docs (@tomekpapiernik)
- #1851 Bump image of Remote Environment Controller (@Szymongib)
- #1848 Bump image of Connector Service (@franpog859)
- #1763 Add possibility to skip RE chart installation (@Szymongib)
- #1836 Add RE installation status docs (@tomekpapiernik)
- #1829 Set connector-service token timeout to 5 min (@crabtree)
- #1775 Connector service token documentation update (@crabtree)
- #1771 Connection-token-handler subchart (@crabtree)
- #1742 Connection-token-handler component source code (@crabtree)
- #1797 Add SkipInstallation flag to Remote Environment (@Szymongib)
- #1820 Bump image of Metadata Service (@Szymongib)
- #1686 Metadata Service returns correct error code when RE does not exist (@franpog859)
- #1783 Bump metadata tests version (@janmedrek)
- #1788 Bump Metadata Service image (@Szymongib)
- #1740 Fix unstable Metadata-Service tests (@janmedrek)
- #1587 Basic OData support for Metadata Service (@Szymongib)
- #1738 Add prow Makefile to the RemoteEnvironmentBroker (@polskikiel)
- #1693 Application connector documentation cleanup (@Maladie)
- #1699 Document registering secured APIs through Metadata Service (@tomekpapiernik)
- #1710 Bump images of Connector Service (@Maladie)
- #1603 Update Remote Environment Controller chart (@Szymongib)
- #1584 Remove default re (#1458) (@Maladie)
- #1497 Remote Environment Controller Improvement (@Szymongib)
- #1474 Refactor Remote Environemnt to support different types of credentials (@Szymongib)
- #1634 Add SpecificationUrl and ApiType to RE client (@Szymongib)
- #1519 Basic auth in proxy service (@akgalwas)
- #1526 Refactor Metadata Service to support different authentication methods (@janmedrek)
- #1500 Add installation status to Remote Environment (@Szymongib)
- #1607 Cluster overrides allow skipping TLS verification in Application Connector tests (@franpog859)
- #1581 Bump Metadata Service (@Szymongib)
- #1578 Add retries to CR update in Metadata Service (@Szymongib)
Serverless
- #2135 Extend documentation for lambda usage (@k15r)
- #2130 Bump load test image (@sayanh)
- #2128 Fix go lint issues for load-test (@sayanh)
- #1754 Change charts for standalone and integration kubeless tests (@sayanh)
- #1689 Added standalone kubeless tests (@sayanh)
- #1719 Change folder name kubeless-test-client to kubeless integration (@sayanh)
- #1728 Remove a relative link from the Serverless document (@kazydek)
Service Catalog
- #2144 Support bind schemas and OSB fields in bundles (@polskikiel)
- #2141 Describe the Redis class provided by the Helm Broker (@klaudiagrz)
- #2035 Add extra logs to Service Binding Usage acceptance test (@jasiu001)
- #2071 Rename BUC CRs domain to kyma-project.io (@polskikiel)
- #2083 Update images version for ui-api and acceptance tests (@mszostok)
- #2051 Bump images of catalog ui and instances ui (@magicmatatjahu)
- #2030 Bump the BindingUsageController version (@mszostok)
- #2010 Fix unhandled err checking in BUC project (@mszostok)
- #1969 Make Catalog UI to be more resilient on empty creating schemas (@magicmatatjahu)
- #1999 Hide bindings tab if instance not bindable (@akucharska)
- #2014 Rename reb to ab (directory and imports) (@adamwalach)
- #1966 Modify default etcd configuration (for service catalog) (@adamwalach)
- #1667 Handle already existing EventActivation (@polskikiel)
- #1918 Remove subscription on UPDATE action from PodPreset configuration (@mszostok)
- #1850 Dump namespace info in case of test failure (@polskikiel)
- #1757 Add documentation about the GCP Broker in main docs (@mszostok)
- #1885 Add doc-job for Helm Broker classes (@mszostok)
- #1880 Add doc-job for GCP Broker classes (@mszostok)
- #1774 Add documentation for gcp-broker-provider (@adamwalach)
- #1874 Fix GCP Broker provider tool script (@mszostok)
- #1649 Add GCP Broker provider tool (@mszostok)
- #1791 Update image version for Binding Usage Controller (@jasiu001)
- #1787 Add Makefiles for tools: ark-plugins, etcd-tls-setup (@mwieczorek)
- #1761 Update SBU status messages (@jasiu001)
- #1770 Fix bug with non-support GCP Broker schemas in catalog UI (@magicmatatjahu)
- #1738 Add prow Makefile to the RemoteEnvironmentBroker (@polskikiel)
- #1731 Bump Instances UI (@pkosiec)
- #1669 Binding Usage Controller - fix Makefile (@aszecowka)
- #1702 Bump timeout in Service Catalog test (@polskikiel)
- #1700 Enable Async binding operations in Service Catalog (@piotrmiskiewicz)
- #1562 Make service catalog as a root chart (@polskikiel)
- #1682 Bump acceptance test image - increase SBU timeout (@piotrmiskiewicz)
- #1680 Increase Binding Usage acceptance test assert timeout (@piotrmiskiewicz)
- #1647 update-012-configuration-helm-broker-bundles.md (@montaro)
- #1588 Bump REB version - trigger Service Catalog when service is ready (@piotrmiskiewicz)
- #1574 Add service checking logic when service broker is created (@piotrmiskiewicz)
Cluster
- #1729 Add plugins to ark chart (@mwieczorek)
- #1527 Add ark plugins (@mwieczorek)
- #1688 Upgrade Heptio Ark to v0.10.0 (@mwieczorek)
- #1666 Add grafana dashboard for heptio ark (@mwieczorek)
Eventing
- #1642 adjust domain of subscriptions.eventing CRD to kyma-project.io resources (@montaro)
- #1967 Fix the sub-validator directory name (@marcobebway)
- #1957 tests event-bus Prow build job (@montaro)
- #1927 Prow migration for event-service and k8s-dashboard-proxy components (@marcobebway)
- #1946 Prow migration for event-bus component (@marcobebway)
- #1673 Update the event bus tests Go dependencies (@montaro)
- #1624 adjust domain of subscriptions.eventing CRD to kyma-project.io (@montaro)
Security
- #1595 Allow securing specific resources in GraphQL (@kubadz)
- #1927 Prow migration for event-service and k8s-dashboard-proxy components (@marcobebway)
- #1739 Added metrics.k8s.io to API groups of the kyma-admin role (@tomekpapiernik)
- #1545 Enable secure access for k8 s dashboard (K8s Dashboard Proxy component) (@montaro)
- #1658 Move details from "cluster-users" to official docs (@tomekpapiernik)
- #1594 Enable RBAC on graphql (@kubadz)
- #1586 Fix ClusterRole bug (@tomekpapiernik)
Service Mesh
- #2166 Application-connector fix for xip-io feature (@kfurgol)
- #2142 Bump xip-patch image version (@kfurgol)
- #2126 Xip-patch IP address fix (@kfurgol)
- #2056 Add xip patch chart (@kfurgol)
- #2055 Add xip patch component (@kfurgol)
- #1949 Add knative serving acceptance tests container (@sjanota)
- #1948 Make api-controller and kubeless tests use test ingressgateway client (@sjanota)
- #1947 Add ingress gateway client for testing purposes (@sjanota)
- #2088 Change namespace for api-controller tests (@Demonsthere)
- #2062 Update api controller chart (@Demonsthere)
- #2057 Fix sampleapp behaviour (@Demonsthere)
- #1908 Add docs for installing Kyma with Knative from sources (@tomekpapiernik)
- #1909 Add "virtualservices.networking.istio.io" to kyma-admin and kyma-view API groups (@tomekpapiernik)
- #1597 Use new api-controller tests (@sjanota)
- #1612 Add status description to API CR docs (@sjanota)
- #1617 Use patch image with mTLS verification (@sjanota)
- #1575 Use new API domain in charts (@sjanota)
- #1615 Add mTLS information to custom istio installation docs (@sjanota)
- #1573 Use new API domain (@sjanota)
- #1529 Change domain name for API CRD (@sjanota)
Installation
- #2129 kyma-installer - add Makefile to build it from Prowjob (@aszecowka)
- #1845 Make Kyma use knative-ingressgateway in 'knative' mode (@sjanota)
- #2059 extend logging (@jakkab)
- #1962 Remove original kyma-installation dir (@jakkab)
- #1931 Copy kyma-installer to tools dir (@jakkab)
- #1803 Create KNative chart (@sjanota)
- #1863 Reducing kyma-installer ns memory limit (@PavelPavlov46)
- #1778 Read overrides before each installation step (@jakkab)
- #1749 Add knative-installer component to charts (@sjanota)
- #1776 Fix redirects in curl when dowloading knative (@sjanota)
- #1758 Enable heapster addon for Windows (@tomekpapiernik)
- #1748 Add knative-installer component (@sjanota)
- #1739 Added metrics.k8s.io to API groups of the kyma-admin role (@tomekpapiernik)
- #1725 Update docu to use 0.5.0 release artefacts (@strekm)
- #1677 Log overrides before each installation step (@kfurgol)
- #1705 Update GKE version (@tomekpapiernik)
- #1635 Fix 0.5-rc installation bug (@jakkab)
Monitoring
- #1961 Reoder monitoring chart installation (@rakesh-garimella)
Tracing
- #2017 Update tracing architecture document (@bszwarc)
- #1804 Update Tracing documentation (@bszwarc)
- #1694 Update diagrams for tracing (@bszwarc)
- #1465 Make jaeger optional for local (@abbi-gaurav)
Console
- #2158 Bump UI API Layer acceptance tests (@pkosiec)
- #2157 Fix skipping UI API Layer acceptance tests when Dex is disabled (@pkosiec)
- #2138 Bump UI API Layer and acceptance tests (@pkosiec)
- #2139 Convert UI API Layer modules to pluggable ones (@pkosiec)
- #2143 Define BackendModule custom resources in Kyma components (@pkosiec)
- #2131 Introduce UI API Layer module pluggability (@pkosiec)
- #2074 Rename environments to namespaces (@dariadomagala)
- #2084 Import Failery tool (@pkosiec)
- #2064 Introduce custom resource for UI API Backend Module (@pkosiec)
- #2067 Rename Remote Environments to Applications in Console UI (@kwiatekus)
- #2051 Bump images of catalog ui and instances ui (@magicmatatjahu)
- #2036 Bump UI API Layer image version (@pkosiec)
- #2034 Bump Instances and Catalog UI version (@pkosiec)
- #1969 Make Catalog UI to be more resilient on empty creating schemas (@magicmatatjahu)
- #2024 Bump UI API Acceptance tests (@pkosiec)
- #2002 Pass token for subscriptions in UI API Layer acceptance tests the same way like on UI (@pkosiec)
- #1999 Hide bindings tab if instance not bindable (@akucharska)
- #1936 Bump console image version (@dariadomagala)
- #1881 Fix running UI API Layer acceptance tests on local machine (@jcwiekala)
- #1911 Define Makefile for UI API Layer Acceptance tests (@pkosiec)
- #1768 Bump ui-tests image version (@aerfio)
- #1770 Fix bug with non-support GCP Broker schemas in catalog UI (@magicmatatjahu)
- #1731 Bump Instances UI (@pkosiec)
- #1685 Bump content-ui image (@kwiatekus)
- #1579 Fix handling of SPA routing for micro front-ends (@kwiatekus)
- #1591 Bump Catalog, Instances and UI API Layer version (@pkosiec)
- #1556 Fix ServiceBinding status in UI API Layer (@pkosiec)
Documentation
- #2176 Correct numbering of kyma docs (@kazydek)
- #2171 Rename to Environments Controller (@tomekpapiernik)
- #2159 Update documentation image (@klaudiagrz)
- #2160 Add the documentation generation on kyma-project.io (@michal-hudy)
- #2141 Describe the Redis class provided by the Helm Broker (@klaudiagrz)
- #2135 Extend documentation for lambda usage (@k15r)
- #2155 Xip installation doc fix (@kfurgol)
- #2063 Document installing Kyma with xip.io wildcard DNS (@tomekpapiernik)
- #2106 Change links in kyma/docs in correct way for kyma-project.io (@magicmatatjahu)
- #2006 Rename AC components to follow new architecture diagrams - charts (@crabtree)
- #1993 Rename AC components to follow new architecture diagrams (@crabtree)
- #2008 Rename RE to Application - documentation (@tomekpapiernik)
- #2061 Add missing Kyma docs image build (@pkosiec)
- #2047 Update local installation guide - checking installation status + troubleshooting (@tomekpapiernik)
- #2050 Update the main kyma/docs README (@klaudiagrz)
- #2017 Update tracing architecture document (@bszwarc)
- #2032 Update SC version in the documentation (@klaudiagrz)
- #2025 Correct the "lambda/function" formatting (@klaudiagrz)
- #1994 Update the doc image (@kazydek)
- #1982 Add a new document type (@kazydek)
- #1985 replace minio links with links to examples (@a-thaler)
- #1973 Update the doc image (@kazydek)
- #1974 Fix typo and standardize capitalization of "installer" (@tomekpapiernik)
- #1970 Change formatting in the installation guide (@kazydek)
- #1941 Build Documentation images with Prow (@pkosiec)
- #1935 Update cr-installation documentation (@kfurgol)
- #1956 Bump documentation image version (@tomekpapiernik)
- #1804 Update Tracing documentation (@bszwarc)
- #1908 Add docs for installing Kyma with Knative from sources (@tomekpapiernik)
- #1903 Update monitoring dead links (@magicmatatjahu)
- #1900 Bump documentation version (@mszostok)
- #1757 Add documentation about the GCP Broker in main docs (@mszostok)
- #1774 Add documentation for gcp-broker-provider (@adamwalach)
- #1854 Running AC component tests on local deployment - docs (@tomekpapiernik)
- #1828 Modify description of key components (@derberg)
- #1841 Rename tracing example (@lilitgh)
- #1717 Add documentation for GCP Service Classes (@klaudiagrz)
- #1836 Add RE installation status docs (@tomekpapiernik)
- #1694 Update diagrams for tracing (@bszwarc)
- #1775 Connector service token documentation update (@crabtree)
- #1756 Remove kyma-project.io from milv config (@akucharska)
- #1734 Update the doc image (@kazydek)
- #1693 Application connector documentation cleanup (@Maladie)
- #1728 Remove a relative link from the Serverless document (@kazydek)
- #1725 Update docu to use 0.5.0 release artefacts (@strekm)
- #1699 Document registering secured APIs through Metadata Service (@tomekpapiernik)
- #1712 Provide a link to the separate examples repository (@klaudiagrz)
- #1705 Update GKE version (@tomekpapiernik)
- #1695 Correct wrong formatting of CR names in docs (@klaudiagrz)
- #1685 Bump content-ui image (@kwiatekus)
- #1678 Update documentation image (@klaudiagrz)
- #1658 Move details from "cluster-users" to official docs (@tomekpapiernik)
- #1660 Update broker registration GSG (@klaudiagrz)
- #1647 update-012-configuration-helm-broker-bundles.md (@montaro)
- #1651 Add adamwalach to CODEOWNERS (@adamwalach)
- #1612 Add status description to API CR docs (@sjanota)
- #1507 Move OSBA Contracts to main docs (@klaudiagrz)
- #1640 Add forgotten comments to istio patch docs (@sjanota)
- #1615 Add mTLS information to custom istio installation docs (@sjanota)
- #1573 Use new API domain (@sjanota)
- #1529 Change domain name for API CRD (@sjanota)
- #1604 Change the doc image (@kazydek)
- #1571 Add the list of available examples (@kazydek)
Community
- #2160 Add the documentation generation on kyma-project.io (@michal-hudy)
- #1937 Update stale.yml with new stale label (@derberg)
- #1756 Remove kyma-project.io from milv config (@akucharska)
- #1733 Update CODEOWNERS for service-catalog and service-catalog-addons charts (@pkosiec)
CI
- #2193 Release 0.6.0-rc1 using Prow - dry run (@aszecowka)
- #2160 Add the documentation generation on kyma-project.io (@michal-hudy)
- #2136 Add Makefile rule for releasing kyma artifacts (@aszecowka)
- #2140 Add one line to readme (@michal-hudy)
- #2085 Fix watch-pods makefile (@polskikiel)
- #2020 Add prow configuration for apiserver-proxy (@Tomasz-Smelcerz-SAP)
- #2026 Migrate configurations-generator (@Demonsthere)
- #2007 Migrate gateway-tests to Prow (@lilitgh)
- #1941 Build Documentation images with Prow (@pkosiec)
- #1967 Fix the sub-validator directory name (@marcobebway)
- #1957 tests event-bus Prow build job (@montaro)
- #1927 Prow migration for event-service and k8s-dashboard-proxy components (@marcobebway)
- #1946 Prow migration for event-bus component (@marcobebway)
- #1922 Migrate logging, monitoring, kubeless tests to Prow (@lilitgh)
- #1905 add makefile for test-environments (@jakkab)
- #1911 Define Makefile for UI API Layer Acceptance tests (@pkosiec)
- #1853 Add makefile for tools/alpine-net (@mwieczorek)
- #1759 Migrate acceptance tests to prow (@polskikiel)
- #1808 Migrate watch pods to prow (@polskikiel)
- #1790 Migrate Stability Checker to the prow (@polskikiel)
- #1782 Migrate Helm Broker to prow (@polskikiel)
- #1787 Add Makefiles for tools: ark-plugins, etcd-tls-setup (@mwieczorek)
- #1786 Support params.BUILD_COMPONENTS in release pipeline (@crabtree)
- #1701 Use containerTemplate in podTemplate for buildpack in Jenkinsfiles (@crabtree)
- #1760 Remove provision-gke-cluster.sh, deprovision-gke-cluster.sh, and kyma-integration-gke-cluster.sh scripts (@kfurgol)
- #1738 Add prow Makefile to the RemoteEnvironmentBroker (@polskikiel)
- #1702 Bump timeout in Service Catalog test (@polskikiel)
- #1661 Binding usage controller - Makefile required by Prow job (@aszecowka)
- #1602 Add github id function in release pipeline (@crabtree)
- #1601 Split release pipeline (@crabtree)
- #1599 Disable release integration tests (@crabtree)
Committers: 46
- Adam Szecówka (@aszecowka)
- Adam Wałach (@adamwalach)
- Agata (@akucharska)
- Ahmed ElRefaey Hamouda (@montaro)
- Andreas Thaler (@a-thaler)
- Arkadiusz Galwas (@akgalwas)
- Barbara (@bszwarc)
- Daria Domagała (@dariadomagala)
- Franciszek Pogodziński (@franpog859)
- Gaurav Abbi (@abbi-gaurav)
- Jakub Błaszczyk (@Demonsthere)
- Jakub Dziechciewicz (@kubadz)
- Jakub Kabza (@jakkab)
- Jan Mędrek (@janmedrek)
- Johannes Engelke (@joek)
- Karolina Zydek (@kazydek)
- Klaudia Grzondziel (@klaudiagrz)
- Korbinian Stoemmer (@k15r)
- Krystian Cieślik (@crabtree)
- Krzysztof (@kwiatekus)
- Lilit Ghazaryan (@lilitgh)
- Lukasz Gornicki (@derberg)
- Lukasz Szymik (@lszymik)
- Maciej Urbańczyk (@magicmatatjahu)
- Marco Bebway (@marcobebway)
- Mariusz Szymański (@Maladie)
- Mateusz Puczyński (@aerfio)
- Mateusz Szostok (@mszostok)
- Michal Kempski (@polskikiel)
- Michał Hudy (@michal-hudy)
- Michał Wieczorek (@mwieczorek)
- Pavel Pavlov (@PavelPavlov46)
- Paweł Kosiec (@pkosiec)
- Piotr Jasiak (@jasiu001)
- Piotr Miśkiewicz (@piotrmiskiewicz)
- Rakesh Garimella (@rakesh-garimella)
- Sayan Hazra (@sayanh)
- Szymon Gibała (@Szymongib)
- Szymon Janota (@sjanota)
- Tomasz Papiernik (@tomekpapiernik)
- Tomasz Smelcerz (@Tomasz-Smelcerz-SAP)
- Ventura, Santiago (@venturasr)
- @jcwiekala
- @kfurgol
- @mjasinski5
- @strekm