Bump helm to v3.9.4 and k8s client to 24.2.0

Signed-off-by: Ruslan Aliev <raliev@mirantis.com>
Change-Id: I55d7b34e7525fe6359157d0fa042332a91ac9c95
This commit is contained in:
Ruslan Aliev 2022-08-03 19:35:42 -05:00
parent ef0ac2f252
commit 379c88d619
5 changed files with 7 additions and 7 deletions

View File

@ -33,7 +33,7 @@ IMAGE := ${DOCKER_REGISTRY}/${IMAGE_PREFIX}/${IMAGE_NAME}:${IMAGE_TA
UBUNTU_BASE_IMAGE ?=
# Helm binary download url
HELM_ARTIFACT_URL ?= https://get.helm.sh/helm-v3.8.2-linux-amd64.tar.gz
HELM_ARTIFACT_URL ?= https://get.helm.sh/helm-v3.9.4-linux-amd64.tar.gz
# VERSION INFO
GIT_COMMIT = $(shell git rev-parse HEAD)

View File

@ -145,7 +145,7 @@ class ChartSourceException(SourceException):
self._chart_name = chart_name
self._source_type = source_type
self._message = 'Unknown source type \"' + self._source_type + '\" for \
chart \"' + self._chart_name + '\"'
self._message = 'Unknown source type \"' + self._source_type +\
'\" for chart \"' + self._chart_name + '\"'
super(ChartSourceException, self).__init__(self._message)

View File

@ -236,8 +236,8 @@ class TestReleasesReleaseNameControllerNegativeRbacTest(base.BaseControllerTest
):
@test_utils.attr(type=['negative'])
def test_test_release_insufficient_permissions(self):
"""Tests the GET /api/v1.0/test/{namespace}/{release} endpoint returns 403
following failed authorization.
"""Tests the GET /api/v1.0/test/{namespace}/{release} endpoint returns
403 following failed authorization.
"""
rules = {'armada:test_release': policy_base.RULE_ADMIN_REQUIRED}
self.policy.set_rules(rules)

View File

@ -5,7 +5,7 @@ jsonschema>=3.0.1,<4
keystoneauth1>=3.18.0
keystonemiddleware==5.3.0
kombu<4.7,>=4.6.10
kubernetes<24,>=23.0.0; python_version >= '3.6'
kubernetes~=24.2.0; python_version >= '3.6'
Paste>=2.0.3
PasteDeploy>=1.5.2
pylibyaml~=0.1

View File

@ -17,7 +17,7 @@
set -x
HELM=$1
HELM_ARTIFACT_URL=${HELM_ARTIFACT_URL:-"https://get.helm.sh/helm-v3.8.2-linux-amd64.tar.gz"}
HELM_ARTIFACT_URL=${HELM_ARTIFACT_URL:-"https://get.helm.sh/helm-v3.9.4-linux-amd64.tar.gz"}
function install_helm_binary {