Skip to content

Commit de7f4c1

Browse files
author
Jeff Peeler
committed
catalog: handle change to single catalog binary
apiserver and controller-manager are now all built into the new service-catalog binary. Each component is invoked via argument similar to how hyperkube functions.
1 parent 1af9822 commit de7f4c1

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

examples/service-catalog/service-catalog.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,9 @@ objects:
254254
serviceAccountName: service-catalog-apiserver
255255
containers:
256256
- command:
257-
- apiserver
257+
- service-catalog
258258
args:
259+
- apiserver
259260
- --admission-control
260261
- KubernetesNamespaceLifecycle,DefaultServicePlan,ServiceBindingsLifecycle,ServicePlanChangeValidator,BrokerAuthSarCheck
261262
- --storage-type
@@ -352,8 +353,9 @@ objects:
352353
serviceAccountName: service-catalog-controller
353354
containers:
354355
- command:
355-
- controller-manager
356+
- service-catalog
356357
args:
358+
- controller-manager
357359
- -v
358360
- "5"
359361
- --leader-election-namespace

hack/build-local-images.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@
141141
"directory": "service-catalog",
142142
"vendor_dir": "cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog",
143143
"binaries": {
144-
"controller-manager": "/usr/bin/controller-manager",
145-
"apiserver": "/usr/bin/apiserver",
144+
"service-catalog": "/usr/bin/service-catalog",
146145
},
147146
"files": {},
148147
"enable_default": False,

images/service-catalog/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ RUN INSTALL_PKGS="origin-service-catalog" && \
55
rpm -V ${INSTALL_PKGS} && \
66
yum clean all
77

8-
CMD [ "/usr/bin/controller-manager" ]
8+
CMD [ "/usr/bin/service-catalog" ]

origin.spec

+2-4
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,7 @@ install -p -m 755 cmd/cluster-capacity/go/src/github.com/kubernetes-incubator/cl
304304
ln -s hypercc %{buildroot}%{_bindir}/cluster-capacity
305305

306306
# Install service-catalog
307-
install -p -m 755 cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog/_output/local/bin/${PLATFORM}/apiserver %{buildroot}%{_bindir}/
308-
install -p -m 755 cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog/_output/local/bin/${PLATFORM}/controller-manager %{buildroot}%{_bindir}/
307+
install -p -m 755 cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog/_output/local/bin/${PLATFORM}/service-catalog %{buildroot}%{_bindir}/
309308

310309
# Install pod
311310
install -p -m 755 _output/local/bin/${PLATFORM}/pod %{buildroot}%{_bindir}/
@@ -554,8 +553,7 @@ if [ -d %{kube_plugin_path} ]; then
554553
fi
555554

556555
%files service-catalog
557-
%{_bindir}/apiserver
558-
%{_bindir}/controller-manager
556+
%{_bindir}/service-catalog
559557

560558
%files -n tuned-profiles-%{name}-node
561559
%license LICENSE

pkg/oc/bootstrap/bindata.go

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)