Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit e3cfc47

Browse files
authored
chore: update secret manager in kokoro (#1350)
1 parent 02a972d commit e3cfc47

3 files changed

Lines changed: 14 additions & 1 deletion

File tree

.kokoro/continuous/common.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,9 @@ env_vars: {
2525
key: "TRAMPOLINE_BUILD_FILE"
2626
value: "github/python-storage/.kokoro/build.sh"
2727
}
28+
29+
# Credentials needed to test universe domain.
30+
env_vars: {
31+
key: "SECRET_MANAGER_KEYS"
32+
value: "client-library-test-universe-domain-credential"
33+
}

.kokoro/release/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ before_action {
3636
# Tokens needed to report release status back to GitHub
3737
env_vars: {
3838
key: "SECRET_MANAGER_KEYS"
39-
value: "releasetool-publish-reporter-app,releasetool-publish-reporter-googleapis-installation,releasetool-publish-reporter-pem"
39+
value: "releasetool-publish-reporter-app,releasetool-publish-reporter-googleapis-installation,releasetool-publish-reporter-pem, client-library-test-universe-domain-credential"
4040
}
4141

4242
# Store the packages we uploaded to PyPI. That way, we have a record of exactly

owlbot.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"noxfile.py",
4747
"CONTRIBUTING.rst",
4848
"README.rst",
49+
".kokoro/continuous/common.cfg",
4950
".kokoro/presubmit/system-3.8.cfg",
5051
".kokoro/samples/python3.6", # remove python 3.6 support
5152
".github/blunderbuss.yml", # blunderbuss assignment to python squad
@@ -83,6 +84,12 @@
8384
"""omit =
8485
.nox/*""")
8586

87+
s.replace(
88+
".kokoro/release/common.cfg",
89+
'value: "releasetool-publish-reporter-app,releasetool-publish-reporter-googleapis-installation,releasetool-publish-reporter-pem"',
90+
'value: "releasetool-publish-reporter-app,releasetool-publish-reporter-googleapis-installation,releasetool-publish-reporter-pem, client-library-test-universe-domain-credential"'
91+
)
92+
8693
python.py_samples(skip_readmes=True)
8794

8895
s.shell.run(["nox", "-s", "blacken"], hide_output=False)

0 commit comments

Comments
 (0)