-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use token to activate maintenance for rollout
- Loading branch information
hicham
committed
Dec 2, 2023
1 parent
2f55261
commit 14b6778
Showing
6 changed files
with
15 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,4 +95,5 @@ INFRA_EXPORT_TOKEN= | |
INFRA_HADOOP_TOKEN= | ||
SJS_TOKEN= | ||
ETL_TOKEN= | ||
ROLLOUT_MAINTENANCE_TOKEN= | ||
JWT_SIGNING_KEY= |
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
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 |
---|---|---|
|
@@ -55,6 +55,13 @@ def sjs(cls): | |
lastname="SERVER", | ||
email="[email protected]") | ||
|
||
@classmethod | ||
def rollout(cls): | ||
return cls(username="ROLLOUT_PIPELINE", | ||
firstname="Rollout", | ||
lastname="PIPELINE", | ||
email="[email protected]") | ||
|
||
|
||
class StrEnum(str, Enum): | ||
def __str__(self): | ||
|