Istio-operator to 1.6
This commit is contained in:
parent
343deb1aff
commit
b35358b0d2
@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: kubezero-istio
|
name: kubezero-istio
|
||||||
description: KubeZero Umbrella Chart for Istio
|
description: KubeZero Umbrella Chart for Istio
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.1
|
version: 0.1.0
|
||||||
appVersion: 1.5
|
appVersion: 1.6
|
||||||
home: https://kubezero.com
|
home: https://kubezero.com
|
||||||
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
|
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
|
||||||
keywords:
|
keywords:
|
||||||
@ -16,5 +16,5 @@ dependencies:
|
|||||||
version: ">= 0.1.1"
|
version: ">= 0.1.1"
|
||||||
repository: https://zero-down-time.github.io/kubezero/
|
repository: https://zero-down-time.github.io/kubezero/
|
||||||
- name: istio-operator
|
- name: istio-operator
|
||||||
version: "= 1.5"
|
version: "= 1.6"
|
||||||
kubeVersion: ">= 1.16.0"
|
kubeVersion: ">= 1.16.0"
|
||||||
|
@ -5,7 +5,7 @@ KubeZero Umbrella Chart for Istio
|
|||||||
Installs Istio Operator and KubeZero Istio profile
|
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)
|
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 |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| | istio-operator | = 1.5 |
|
| | istio-operator | = 1.6 |
|
||||||
| https://zero-down-time.github.io/kubezero/ | kubezero-lib | >= 0.1.1 |
|
| https://zero-down-time.github.io/kubezero/ | kubezero-lib | >= 0.1.1 |
|
||||||
|
|
||||||
## KubeZero default configuration
|
## KubeZero default configuration
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
name: istio-operator
|
name: istio-operator
|
||||||
version: 1.5
|
version: 1.6.0
|
||||||
tillerVersion: ">=2.7.2"
|
tillerVersion: ">=2.7.2"
|
||||||
description: Helm chart for deploying Istio operator
|
description: Helm chart for deploying Istio operator
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# SYNC WITH manifests/charts/base/files
|
||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
@ -1,4 +1,4 @@
|
|||||||
hub: gcr.io/istio-testing
|
hub: gcr.io/istio-testing
|
||||||
tag: 1.5-dev
|
tag: 1.6-dev
|
||||||
operatorNamespace: istio-operator
|
operatorNamespace: istio-operator
|
||||||
istioNamespace: istio-system
|
istioNamespace: istio-system
|
||||||
|
@ -1,15 +1,18 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
ISTIO_VERSION=1.5.8
|
ISTIO_VERSION=1.6.5
|
||||||
|
|
||||||
NAME="istio-$ISTIO_VERSION"
|
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
|
curl -sL "$URL" | tar xz
|
||||||
|
|
||||||
# Now lets extract what we need
|
# Now lets extract what we need
|
||||||
rm -rf charts/istio-operator
|
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}
|
rm -rf istio-${ISTIO_VERSION}
|
||||||
|
|
||||||
|
# Apply our patch
|
||||||
|
patch -i istio-operator.patch -p3
|
||||||
|
Loading…
Reference in New Issue
Block a user