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

0.7.0

Compare
Choose a tag to compare
@kyma-bot kyma-bot released this 01 Aug 11:47
· 56 commits to master since this release
c1f4fdc

Bundles

Changes:

  • Provided a new GCP broker
  • Renamed bundles to addons
  • Improved documentation
  • Added acc-testing addon

Usage

To extend the Helm Broker in Kyma, use the indexes that are part of the release.

Check your current repositories URLs:

  • In the latest version of Kyma:
kubectl get clusteraddonsconfiguration -n kyma-system -oyaml
  • In Kyma version under v1.3:
kubectl get configmap -n kyma-system -l helm-broker-repo=true -ojson | jq '.items[].data.URLs'

If you want to change your repository configuration, follow these steps: 

Set the repository to stable bundles from this release:

  • In the latest version of Kyma:
kubectl create clusteraddonsconfiguration my-helm-repos-urls -n kyma-system 
kubectl edit clusteraddonconfiguration my-helm-repos-urls -n kyma-system
Insert your repositories under .spec.repositories field
  • In Kyma version under v1.3:
kubectl create configmap my-helm-repos-urls -n kyma-system --from-literal=URLs=https://github.com/kyma-project/bundles/releases/download/0.6.0/index.yaml

kubectl label configmap my-helm-repos-urls -n kyma-system helm-broker-repo=true

NOTE: The Helm Broker does not register duplicated bundles in the Service Catalog. Ensure that the registered repositories do not define the same bundles.
 

🚀 Enhancement

  • Add bundle for helm-broker acceptance testing (#26) (#96)
  • Improve AWS Service Broker overview (#99)
  • Remove GCP Broker (#97)
  • Update metadata in the testing bundles docs (#101)
  • Rename bundles to addons (#100)
  • Update stale bot settings to exclude epics (#105)
  • New GCP Service Broker (#106)

🐛 Bug Fix

  • Fix a dead link (#102)
  • Fix AWS broker versions (#107)