* Initial Work of Better Deployment Script * Checks if .secret is Present on Test Setup * Implements Custom Routing per Profile * Rewriting Setup Tools - Adds Postgres and Redis * Rewriting Setup Tools - Adds Frontend * Rewriting Setup Tools - Adds Backend * Rewriting Setup Tools - Adds CertManager * Rewriting Setup Tools - Adds Frontend * Adds Nginx-Ingress and Fixes Staging Environment * Updates CertManager and Nginx-Ingress * Implements New Setup Process Initial Adjustments to CI/CD Adjusts CI/CD test * Adds CI/CD for Prod Environment
This commit is contained in:
20
template/backend/backend-secret.template.yaml
Normal file
20
template/backend/backend-secret.template.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
namespace: portfolio
|
||||
name: backend-secret
|
||||
type: Opaque
|
||||
data:
|
||||
token_secret: $TOKEN_SECRET
|
||||
access_token_duration: $ACCESS_TOKEN_DURATION
|
||||
refresh_token_duration: $REFRESH_TOKEN_DURATION
|
||||
default_user_fullname: $DEFAULT_USER_FULLNAME
|
||||
default_user_email: $DEFAULT_USER_EMAIL
|
||||
default_user_username: $DEFAULT_USER_USERNAME
|
||||
default_user_password: $DEFAULT_USER_PASSWORD
|
||||
google_client_id: $GOOGLE_CLIENT_ID
|
||||
google_client_secret: $GOOGLE_CLIENT_SECRET
|
||||
google_redirect_url: $GOOGLE_REDIRECT_URL
|
||||
github_client_id: $OAUTH_GITHUB_CLIENT_ID
|
||||
github_client_secret: $OAUTH_GITHUB_CLIENT_SECRET
|
||||
github_redirect_url: $OAUTH_GITHUB_REDIRECT_URL
|
||||
Reference in New Issue
Block a user