Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(operator): Add hosts when TLS is activated #1162

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
apiVersion: stack.formance.com/v1beta3
kind: Configuration
metadata:
name: default
spec:
broker:
kafka:
brokers:
- kafka1:1234
- kafka2:1234
ingress:
tls:
secretName: tls-secret
monitoring:
traces:
otlp:
endpoint: localhost
insecure: true
mode: grpc
port: 4317
services:
auth:
postgres:
disableSSLMode: true
host: localhost
password: root
port: 5432
username: root
control: {}
ledger:
postgres:
disableSSLMode: true
host: localhost
password: root
port: 5432
username: root
orchestration:
postgres:
disableSSLMode: true
host: localhost
password: root
port: 5432
username: root
payments:
encryptionKey:
postgres:
disableSSLMode: true
host: localhost
password: root
port: 5432
username: root
search:
batching:
count:
period:
elasticSearch:
host: elasticsearch
pathPrefix: ''
port: 9200
scheme: http
stargate:
wallets:
webhooks:
postgres:
disableSSLMode: true
host: localhost
password: root
port: 5432
username: root
temporal:
address:
namespace:
tls:
crt:
key:
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
apiVersion: v1
data:
config.yaml: |
clients:
- public: false
description: null
redirectUris:
- http://gateway:8000/auth/login
PostLogoutRedirectUris:
- http://gateway:8000/auth/destroy
scopes:
- openid
- profile
- email
- offline
id: control
secrets:
- mocked-secret
- public: false
description: null
redirectUris: []
PostLogoutRedirectUris: []
scopes:
- openid
- ledger:read
- ledger:write
- wallets:read
- wallets:write
- payments:read
- payments:write
id: orchestration
secrets:
- mocked-secret
- public: false
description: null
redirectUris: []
PostLogoutRedirectUris: []
scopes:
- openid
- ledger:read
- ledger:write
id: wallets
secrets:
- mocked-secret
kind: ConfigMap
metadata:
labels:
stack: "true"
name: auth-config
namespace: multipod-tls
Loading
Loading