-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Abort running suites using DELETE request
- Loading branch information
Showing
6 changed files
with
143 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright Axis Communications AB. | ||
# | ||
# For a full list of individual contributors, please see the commit history. | ||
# | ||
# 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. | ||
"""Generic helpers for all submodules.""" |
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,46 @@ | ||
# Copyright Axis Communications AB. | ||
# | ||
# For a full list of individual contributors, please see the commit history. | ||
# | ||
# 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. | ||
"""Generic Kubernetes helpers for all submodules.""" | ||
import logging | ||
import os | ||
|
||
from kubernetes import config | ||
|
||
NAMESPACE_FILE = "/var/run/secrets/kubernetes.io/serviceaccount/namespace" | ||
LOGGER = logging.getLogger(__name__) | ||
|
||
try: | ||
config.load_incluster_config() | ||
except config.ConfigException: | ||
try: | ||
config.load_config() | ||
except config.ConfigException: | ||
LOGGER.warning("Could not load a Kubernetes config") | ||
|
||
|
||
def namespace() -> str: | ||
"""Get current namespace if available.""" | ||
if not os.path.isfile(NAMESPACE_FILE): | ||
LOGGER.warning("Not running in Kubernetes? Namespace file not found: %s", NAMESPACE_FILE) | ||
etos_ns = os.getenv("ETOS_NAMESPACE") | ||
if etos_ns: | ||
LOGGER.warning("Defauling to environment variable 'ETOS_NAMESPACE': %s", etos_ns) | ||
else: | ||
LOGGER.warning("ETOS_NAMESPACE environment variable not set!") | ||
LOGGER.warning("Failed to determine Kubernetes namespace!") | ||
return etos_ns | ||
with open(NAMESPACE_FILE, encoding="utf-8") as namespace_file: | ||
return namespace_file.read() |
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