-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'cmd/service-catalog/go/src/github.com/kubernetes-incubator/…
…service-catalog/' changes from b758460ba7..c3e3071633 c3e3071633 origin build: add origin tooling 97ddbab chart changes for v0.1.9 (#1776) b5168a7 Add unit tests for class, instance, plan backends in svcat (#1763) 97d11cb prometheus: only return catalog specific metrics (#1774) 0fb00e3 Bump dependency on go-open-service-broker-client to 0.0.4 (#1775) 0a9f1e4 Reset RemovedFromBrokerCatalog when broker re-adds a removed service class (#1770) 28ec5ed Bump dependency on go-open-service-broker-client to 0.0.3 (#1768) ca83d18 handle binding deletion that occurs during async bind (#1760) 858d467 2 of 4 fixes for golang 1.10 (#1764) 656156b Add unit tests for binding and broker backends in svcat ec05486 In svcat verify service instance exists on unbind (#1750) e6315a4 fix indentation from #1725 (#1759) 62284da Publish svcat binaries during build (#1725) 8f986ae also build with golang tip and allow tip to fail (#1734) 127561e use pvc for etcd volume (#1684) 7d155e5 Ensure only href-checker runs on docs only commit (#1693) 4ea44c4 log the version and build date on server startup (#1746) 0db9519 allow getting and describing plans with class/plan name combo in svcat (#1743) b1da783 print schemas when describing plan in svcat (#1740) 7a7fcce Add constraint for go-open-service-broker-client (#1738) 3070003 Increase timeout for broker condition polling in e2e (#1745) b6878f7 Avoid Setting Authentication header twice (#1685) 5317111 wrap "rm -rf" with docker (#1735) d7c0bf2 Allow upper case letters in Plan names (#1668) 6b27ba6 Add a constraint on go-autorest (#1732) b3de6ec Added validation for ServiceBinding spec ParametersFrom REVERT: b758460ba7 origin build: modify hard coded path REVERT: 871582f73a origin build: add origin tooling git-subtree-dir: cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog git-subtree-split: c3e3071633b91541cf9f1000d2d5115cdd31de1b
- Loading branch information
Jeff Peeler
committed
Mar 1, 2018
1 parent
241246a
commit f574d6f
Showing
76 changed files
with
2,314 additions
and
145 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
name: catalog | ||
description: service-catalog API server and controller-manager helm chart | ||
version: 0.1.8 | ||
version: 0.1.9 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{{- if and (eq .Values.apiserver.storage.type "etcd") .Values.apiserver.storage.etcd.useEmbedded .Values.apiserver.storage.etcd.persistence.enabled (not .Values.apiserver.storage.etcd.persistence.existingClaim) }} | ||
kind: PersistentVolumeClaim | ||
apiVersion: v1 | ||
metadata: | ||
name: {{ template "fullname" . }}-etcd | ||
labels: | ||
app: {{ template "fullname" . }}-etcd | ||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" | ||
release: "{{ .Release.Name }}" | ||
heritage: "{{ .Release.Service }}" | ||
spec: | ||
accessModes: | ||
- {{ .Values.apiserver.storage.etcd.persistence.accessMode | quote }} | ||
resources: | ||
requests: | ||
storage: {{ .Values.apiserver.storage.etcd.persistence.size | quote }} | ||
{{- if .Values.apiserver.storage.etcd.persistence.storageClass }} | ||
{{- if (eq "-" .Values.apiserver.storage.etcd.persistence.storageClass) }} | ||
storageClassName: "" | ||
{{- else }} | ||
storageClassName: "{{ .Values.apiserver.storage.etcd.persistence.storageClass }}" | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} |
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
Oops, something went wrong.