Merge all Kubezero updates for end of July release #8

Merged
stefan merged 35 commits from master into stable 2020-07-27 21:28:55 +00:00
6 changed files with 14 additions and 10 deletions
Showing only changes of commit d4f59253f8 - Show all commits

View File

@ -2,8 +2,8 @@ apiVersion: v2
name: kubezero-istio
description: KubeZero Umbrella Chart for Istio
type: application
version: 0.0.1
appVersion: 1.5
version: 0.1.0
appVersion: 1.6
home: https://kubezero.com
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
keywords:
@ -16,5 +16,5 @@ dependencies:
version: ">= 0.1.1"
repository: https://zero-down-time.github.io/kubezero/
- name: istio-operator
version: "= 1.5"
version: "= 1.6"
kubeVersion: ">= 1.16.0"

View File

@ -5,7 +5,7 @@ KubeZero Umbrella Chart for Istio
Installs Istio Operator and KubeZero Istio profile
Current chart version is `0.0.1`
Current chart version is `0.1.0`
Source code can be found [here](https://kubezero.com)
@ -13,7 +13,7 @@ Source code can be found [here](https://kubezero.com)
| Repository | Name | Version |
|------------|------|---------|
| | istio-operator | = 1.5 |
| | istio-operator | = 1.6 |
| https://zero-down-time.github.io/kubezero/ | kubezero-lib | >= 0.1.1 |
## KubeZero default configuration

View File

@ -1,6 +1,6 @@
apiVersion: v1
name: istio-operator
version: 1.5
version: 1.6.0
tillerVersion: ">=2.7.2"
description: Helm chart for deploying Istio operator
keywords:

View File

@ -1,3 +1,4 @@
# SYNC WITH manifests/charts/base/files
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:

View File

@ -1,4 +1,4 @@
hub: gcr.io/istio-testing
tag: 1.5-dev
tag: 1.6-dev
operatorNamespace: istio-operator
istioNamespace: istio-system

View File

@ -1,15 +1,18 @@
#!/bin/bash
set -ex
ISTIO_VERSION=1.5.8
ISTIO_VERSION=1.6.5
NAME="istio-$ISTIO_VERSION"
URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istio-${ISTIO_VERSION}-linux.tar.gz"
URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istio-${ISTIO_VERSION}-linux-amd64.tar.gz"
curl -sL "$URL" | tar xz
# Now lets extract what we need
rm -rf charts/istio-operator
cp -r istio-${ISTIO_VERSION}/install/kubernetes/operator/charts/istio-operator charts
cp -r istio-${ISTIO_VERSION}/manifests/charts/istio-operator charts
rm -rf istio-${ISTIO_VERSION}
# Apply our patch
patch -i istio-operator.patch -p3