Skip to content

Commit ace7192

Browse files
authored
bump version (#244)
* bump version * update script * working on auth * change format * remove isntall google auth
1 parent 002bd63 commit ace7192

14 files changed

Lines changed: 857 additions & 104 deletions

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ commands:
4545
echo "Failed to get manager status";
4646
exit 1
4747
fi
48+
- run: pip3 install urllib3==1.26.15 requests-toolbelt==0.10.1
4849
- run: pip3 install https://github.com/cloudify-incubator/cloudify-ecosystem-test/archive/refs/heads/master.zip
4950
- run: git submodule update --init --recursive --remote
5051

51-
5252
prepare_test_manager:
5353
steps:
5454
- run: ecosystem-test prepare-remote-test-manager -es gcp_credentials=$gcp_credentials -p $(find ~/project/workspace/build/ -name *manylinux-py311-none-linux_x86_64.wgn*) ~/project/plugin.yaml

.circleci/merge_docs.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

.circleci/package_release.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

.circleci/test_examples.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

.circleci/test_features.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737

3838

3939
TEST_ID = environ.get('__ECOSYSTEM_TEST_ID', 'plugin-examples')
40+
environ['USE_GKE_GCLOUD_AUTH_PLUGIN'] = 'true'
4041

4142

4243
@pytest.mark.dependency()
@@ -103,10 +104,11 @@ def setup_cli():
103104
creds = base64.b64decode(os.environ['gcp_credentials'])
104105
outfile.write(creds)
105106
handle_process('gcloud auth activate-service-account --key-file gcp.json')
107+
# handle_process('gcloud components install gke-gcloud-auth-plugin')
106108
handle_process(
107109
'gcloud container clusters get-credentials {} '
108-
'--region us-west1-a --project {}'
109-
.format(cluster_name, 'trammell-project'))
110+
'--region us-west1-a --project {}'.format(
111+
cluster_name, 'trammell-project'))
110112

111113

112114
@with_client
@@ -119,8 +121,9 @@ def get_pod_info():
119121
cluster_name = runtime_properties(
120122
node_instance_by_name('kubernetes-cluster')['id'])['name']
121123
handle_process(
122-
'gcloud container clusters get-credentials {} --region us-west1-a'
123-
.format(cluster_name))
124+
'gcloud container clusters get-credentials '
125+
'{} --region us-west1-a --project trammell-project'.format(
126+
cluster_name))
124127
return json.loads(
125128
handle_process('kubectl get pod nginx-test-pod --output="json"'))
126129

.circleci/update_plugin_on_manager.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

.circleci/validate_docs.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

.circleci/validate_version.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

CHANGELOG.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,4 @@
178178
2.13.24: Support Azure Service Account Authentication.
179179
2.13.25: add __version__.py file in cloudify_kubernetes folder.
180180
2.13.26: check plugin and update circleci config.
181+
2.13.27: Use DSL 1.5.

cloudify_kubernetes/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '2.13.26'
1+
version = '2.13.27'

0 commit comments

Comments
 (0)