
The addon manager readme states > - Addons with label `addonmanager.kubernetes.io/mode=EnsureExists` will be checked for > existence only. Users can edit these addons as they want. However, the start_addon function was using `kubectl apply` to create resources regardless of mode. This change switches between `kubectl create` and `kubectl apply` depending on mode. Additionally implemented tests for create_resource fn - Refactor functions and main executable - Quick tests in bash - Tests for Reconcile, EnsureExists behavior - Check for completeness with multi resource configs
24 lines
745 B
Docker
24 lines
745 B
Docker
# Copyright 2016 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM BASEIMAGE
|
|
|
|
RUN clean-install bash
|
|
|
|
ADD kube-addons.sh /opt/
|
|
ADD kube-addons-main.sh /opt/
|
|
ADD kubectl /usr/local/bin/
|
|
|
|
CMD ["/opt/kube-addons-main.sh"]
|