Skip to content

Commit

Permalink
K8S_API settings are all optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenlj committed Feb 23, 2024
1 parent 7efac93 commit 7d9bbf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nais_verification/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class Settings(BaseSettings):
NAIS_TEAMS_API_TOKEN: str

# Only need to override these when running outside a cluster
K8S_API_URL: AnyHttpUrl = None
K8S_API_TOKEN: str = ""
K8S_API_URL: Optional[AnyHttpUrl] = None
K8S_API_TOKEN: Optional[str] = ""
K8S_API_CERT_PATH: Optional[Path] = None
K8S_API_KEY_PATH: Optional[Path] = None
K8S_API_CA_PATH: Optional[Path] = None
Expand Down

0 comments on commit 7d9bbf6

Please sign in to comment.