-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set webhook failurePolicy to Ignore on controller pod shutdown
- Loading branch information
mmirecki
committed
Oct 20, 2021
1 parent
ce0b521
commit 9809dc3
Showing
12 changed files
with
167 additions
and
73 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
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 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package utils | ||
|
||
import "time" | ||
|
||
const ( | ||
ResyncPeriod = 5 * time.Minute | ||
DEFAULT_CONFIG_NAME = "default" | ||
CONFIG_DAEMON_PATH = "./bindata/manifests/daemon" | ||
INJECTOR_WEBHOOK_PATH = "./bindata/manifests/webhook" | ||
OPERATOR_WEBHOOK_PATH = "./bindata/manifests/operator-webhook" | ||
SERVICE_CA_CONFIGMAP_ANNOTATION = "service.beta.openshift.io/inject-cabundle" | ||
INJECTOR_WEBHOOK_NAME = "network-resources-injector-config" | ||
OPERATOR_WEBHOOK_NAME = "sriov-operator-webhook-config" | ||
DEPRECATED_OPERATOR_WEBHOOK_NAME = "operator-webhook-config" | ||
PLUGIN_PATH = "./bindata/manifests/plugins" | ||
DAEMON_PATH = "./bindata/manifests/daemon" | ||
DEFAULT_POLICY_NAME = "default" | ||
CONFIGMAP_NAME = "device-plugin-config" | ||
DP_CONFIG_FILENAME = "config.json" | ||
OVS_HWOL_MACHINE_CONFIG_NAME_SUFFIX = "ovs-hw-offload" | ||
|
||
LinkTypeEthernet = "ether" | ||
LinkTypeInfiniband = "infiniband" | ||
) |
Oops, something went wrong.