Skip to content

Commit

Permalink
Copy istio charts to local directory since upstream is flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Jul 22, 2019
1 parent 2876bf8 commit 2ed523a
Show file tree
Hide file tree
Showing 201 changed files with 22,813 additions and 8 deletions.
13 changes: 13 additions & 0 deletions tests/integration/istio/step1/charts/istio-init/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v1
appVersion: 1.1.0
description: Helm chart to initialize Istio CRDs
engine: gotpl
icon: https://istio.io/favicons/android-192x192.png
keywords:
- istio
- crd
name: istio-init
sources:
- http://github.com/istio/istio
tillerVersion: '>=2.7.2-0'
version: 1.1.0
77 changes: 77 additions & 0 deletions tests/integration/istio/step1/charts/istio-init/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Istio

[Istio](https://istio.io/) is an open platform for providing a uniform way to integrate microservices, manage traffic flow across microservices, enforce policies and aggregate telemetry data.

## Introduction

This chart bootstraps Istio's [CRDs](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/#customresourcedefinitions)
which are an internal implementation detail of Istio. CRDs define data structures for storing runtime configuration
specified by a human operator.

This chart must be run to completion prior to running other Istio charts, or other Istio charts will fail to initialize.

## Prerequisites

- Kubernetes 1.9 or newer cluster with RBAC (Role-Based Access Control) enabled is required
- Helm 2.7.2 or newer or alternately the ability to modify RBAC rules is also required

## Resources Required

The chart deploys pods that consume minimal resources.

## Installing the Chart

1. If a service account has not already been installed for Tiller, install one:
```
$ kubectl apply -f install/kubernetes/helm/helm-service-account.yaml
```

1. If Tiller has not already been installed in your cluster, Install Tiller on your cluster with the service account:
```
$ helm init --service-account tiller
```

1. Install the Istio initializer chart:
```
$ helm install install/kubernetes/helm/istio-init --name istio-init --namespace istio-system
```

> Although you can install the `istio-init` chart to any namespace, it is recommended to install `istio-init` in the same namespace(`istio-system`) as other Istio charts.
## Configuration

The Helm chart ships with reasonable defaults. There may be circumstances in which defaults require overrides.
To override Helm values, use `--set key=value` argument during the `helm install` command. Multiple `--set` operations may be used in the same Helm operation.

Helm charts expose configuration options which are currently in alpha. The currently exposed options are explained in the following table:

| Parameter | Description | Values | Default |
| --- | --- | --- | --- |
| `global.hub` | Specifies the HUB for most images used by Istio | registry/namespace | `docker.io/istio` |
| `global.tag` | Specifies the TAG for most images used by Istio | valid image tag | `0.8.latest` |
| `global.imagePullPolicy` | Specifies the image pull policy | valid image pull policy | `IfNotPresent` |


## Uninstalling the Chart

> Uninstalling this chart does not delete Istio's registered CRDs. Istio by design expects
> CRDs to leak into the Kubernetes environment. As CRDs contain all runtime configuration
> data in CutomResources the Istio designers feel it is better to explicitly delete this
> configuration rather then unexpectedly lose it.
To uninstall/delete the `istio-init` release but continue to track the release:
```
$ helm delete istio-init
```

To uninstall/delete the `istio-init` release completely and make its name free for later use:
```
$ helm delete istio-init --purge
```

> Warning: Deleting CRDs will delete any configuration that you have made to Istio.
To delete all CRDs, run the following command
```
$ for i in istio-init/files/*crd*yaml; do kubectl delete -f $i; done
```
Loading

0 comments on commit 2ed523a

Please sign in to comment.