forked from helm/charts
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
* upstream/master: (52 commits) [redmine] add ingress (helm#1336) [stable/jenkins] Use imageTag as version in config map (helm#1333) - Bump to latest Minio release (helm#1304) Update k8s-dashboard note when ingress is enabled (helm#1339) Update etcd-operator to latest release (helm#1248) [stable/nginx-ingress] Add hostNetwork option (helm#1250) Update the CONTRIBUTING.md to reflect the new #helm-users and #helm-dev channels (helm#1315) Submit stable Voyager chart (helm#954) [datadog] Add optional kube-state-metrics pod (helm#1011) [stable/prestashop] Release 0.4.10 (helm#1267) [stable/wordpress] Release 0.6.5 (helm#1270) [stable/phabricator] Release 0.4.9 (helm#1281) [stable/drupal] Release 0.6.2 (helm#1268) Bump aws-cluster-autoscaler to latest. (helm#1101) Use memcached modern recommended options instead (helm#1221) Update NOTES.txt (helm#1316) Rename MARIADB_PORT env var to MARIADB_PORT_NUMBER (helm#1210) Rename POSTGRESQL_PORT env var to POSTGRESQL_PORT_NUMBER (helm#1189) Kubernetes Dashboard Chart (helm#808) Add best practices to requirements (helm#1305) ...
- Loading branch information
Showing
175 changed files
with
3,748 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
apiVersion: v1 | ||
description: Istio Helm chart for Kubernetes | ||
name: istio | ||
version: 0.1.6 | ||
appVersion: 0.1.5 | ||
version: 0.2.1 | ||
appVersion: 0.1.6 | ||
home: https://istio.io/ | ||
icon: https://raw.githubusercontent.com/istio/istio.github.io/master/favicons/mstile-150x150.png | ||
sources: | ||
- https://github.com/istio/istio | ||
maintainers: | ||
- name: lachie83 | ||
email: lachlan.evenson@microsoft.com | ||
email: lachlan.evenson@microsoft.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{{- $serviceName := include "fullname" . -}} | ||
apiVersion: extensions/v1beta1 | ||
kind: Deployment | ||
metadata: | ||
name: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
labels: | ||
{{ include "labels.standard" . | indent 4 }} | ||
component: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
istio: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
spec: | ||
replicas: {{ .Values.pilot.deployment.replicas }} | ||
template: | ||
metadata: | ||
annotations: | ||
{{- range $key, $value := .Values.pilot.deployment.annotations }} | ||
{{ $key }}: {{ $value | quote }} | ||
{{- end }} | ||
labels: | ||
{{ include "labels.standard" . | indent 8 }} | ||
component: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
istio: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
spec: | ||
serviceAccountName: {{ $serviceName }}-pilot-service-account | ||
containers: | ||
- name: {{ .Values.pilot.deployment.discovery.name }} | ||
image: "{{ .Values.pilot.deployment.discovery.image }}:{{ .Values.istioRelease }}" | ||
imagePullPolicy: {{ .Values.pilot.deployment.discovery.imagePullPolicy }} | ||
args: ["discovery", "-v", "2"] | ||
ports: | ||
- containerPort: {{ .Values.pilot.service.externalHttpDiscovery }} | ||
env: | ||
- name: POD_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
apiVersion: v1 | ||
fieldPath: metadata.namespace | ||
resources: | ||
{{ toYaml .Values.pilot.deployment.discovery.resources | indent 10 }} | ||
- name: {{ .Values.pilot.deployment.apiserver.name }} | ||
image: "{{ .Values.pilot.deployment.apiserver.image }}:{{ .Values.istioRelease }}" | ||
imagePullPolicy: {{ .Values.pilot.deployment.apiserver.imagePullPolicy }} | ||
args: ["apiserver", "-v", "2"] | ||
ports: | ||
- containerPort: {{ .Values.pilot.service.externalHttpApiServer }} | ||
env: | ||
- name: POD_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
apiVersion: v1 | ||
fieldPath: metadata.namespace | ||
resources: | ||
{{ toYaml .Values.pilot.deployment.apiserver.resources | indent 10 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{- $serviceName := include "fullname" . -}} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
labels: | ||
{{ include "labels.standard" . | indent 4 }} | ||
istio: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
spec: | ||
type: {{ .Values.pilot.service.type }} | ||
ports: | ||
- port: {{ .Values.pilot.service.externalHttpDiscovery }} | ||
name: http-discovery | ||
- port: {{ .Values.pilot.service.externalHttpApiServer }} | ||
name: http-apiserver | ||
selector: | ||
app: {{ include "name" . }} | ||
component: {{ $serviceName }}-{{ .Values.pilot.name }} | ||
release: {{ .Release.Name }} | ||
istio: {{ $serviceName }}-{{ .Values.pilot.name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.