From 480625420d3598da45325ace1ef6f1e970aaa1b0 Mon Sep 17 00:00:00 2001 From: Paul Morie Date: Thu, 5 Mar 2020 09:41:21 -0500 Subject: [PATCH] Remove empty leader election config --- config/config-leader-election.yaml | 64 ------------------------------ 1 file changed, 64 deletions(-) delete mode 100644 config/config-leader-election.yaml diff --git a/config/config-leader-election.yaml b/config/config-leader-election.yaml deleted file mode 100644 index 57b363c7..00000000 --- a/config/config-leader-election.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2020 The Knative 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 -# -# https://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. - -apiVersion: v1 -kind: ConfigMap -metadata: - name: config-leader-election - labels: - serving.knative.dev/release: devel -data: - # An inactive but valid configuration follows; see example. - resourceLock: "leases" - leaseDuration: "15s" - renewDeadline: "10s" - retryPeriod: "2s" - _example: | - ################################ - # # - # EXAMPLE CONFIGURATION # - # # - ################################ - - # This block is not actually functional configuration, - # but serves to illustrate the available configuration - # options and document them in a way that is accessible - # to users that `kubectl edit` this config map. - # - # These sample configuration options may be copied out of - # this example block and unindented to be in the data block - # to actually change the configuration. - - # resourceLock controls which API resource is used as the basis for the - # leader election lock. Valid values are: - # - # - leases -> use the coordination API - # - configmaps -> use configmaps - # - endpoints -> use endpoints - resourceLock: "leases" - - # leaseDuration is how long non-leaders will wait to try to acquire the - # lock; 15 seconds is the value used by core kubernetes controllers. - leaseDuration: "15s" - # renewDeadline is how long a leader will try to renew the lease before - # giving up; 10 seconds is the value used by core kubernetes controllers. - renewDeadline: "10s" - # retryPeriod is how long the leader election client waits between tries of - # actions; 2 seconds is the value used by core kubernetes controllers. - retryPeriod: "2s" - # enabledComponents is a comma-delimited list of component names for which - # leader election is enabled. Valid values are: - # - # - serving-operator - enabledComponents: "serving-operator"