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:
parent
ef0ac2f252
commit
379c88d619
2
Makefile
2
Makefile
@ -33,7 +33,7 @@ IMAGE := ${DOCKER_REGISTRY}/${IMAGE_PREFIX}/${IMAGE_NAME}:${IMAGE_TA
|
|||||||
UBUNTU_BASE_IMAGE ?=
|
UBUNTU_BASE_IMAGE ?=
|
||||||
|
|
||||||
# Helm binary download url
|
# 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
|
# VERSION INFO
|
||||||
GIT_COMMIT = $(shell git rev-parse HEAD)
|
GIT_COMMIT = $(shell git rev-parse HEAD)
|
||||||
|
@ -145,7 +145,7 @@ class ChartSourceException(SourceException):
|
|||||||
self._chart_name = chart_name
|
self._chart_name = chart_name
|
||||||
self._source_type = source_type
|
self._source_type = source_type
|
||||||
|
|
||||||
self._message = 'Unknown source type \"' + self._source_type + '\" for \
|
self._message = 'Unknown source type \"' + self._source_type +\
|
||||||
chart \"' + self._chart_name + '\"'
|
'\" for chart \"' + self._chart_name + '\"'
|
||||||
|
|
||||||
super(ChartSourceException, self).__init__(self._message)
|
super(ChartSourceException, self).__init__(self._message)
|
||||||
|
@ -236,8 +236,8 @@ class TestReleasesReleaseNameControllerNegativeRbacTest(base.BaseControllerTest
|
|||||||
):
|
):
|
||||||
@test_utils.attr(type=['negative'])
|
@test_utils.attr(type=['negative'])
|
||||||
def test_test_release_insufficient_permissions(self):
|
def test_test_release_insufficient_permissions(self):
|
||||||
"""Tests the GET /api/v1.0/test/{namespace}/{release} endpoint returns 403
|
"""Tests the GET /api/v1.0/test/{namespace}/{release} endpoint returns
|
||||||
following failed authorization.
|
403 following failed authorization.
|
||||||
"""
|
"""
|
||||||
rules = {'armada:test_release': policy_base.RULE_ADMIN_REQUIRED}
|
rules = {'armada:test_release': policy_base.RULE_ADMIN_REQUIRED}
|
||||||
self.policy.set_rules(rules)
|
self.policy.set_rules(rules)
|
||||||
|
@ -5,7 +5,7 @@ jsonschema>=3.0.1,<4
|
|||||||
keystoneauth1>=3.18.0
|
keystoneauth1>=3.18.0
|
||||||
keystonemiddleware==5.3.0
|
keystonemiddleware==5.3.0
|
||||||
kombu<4.7,>=4.6.10
|
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
|
Paste>=2.0.3
|
||||||
PasteDeploy>=1.5.2
|
PasteDeploy>=1.5.2
|
||||||
pylibyaml~=0.1
|
pylibyaml~=0.1
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
set -x
|
set -x
|
||||||
|
|
||||||
HELM=$1
|
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 {
|
function install_helm_binary {
|
||||||
|
Loading…
Reference in New Issue
Block a user