-
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kubernete: Support for tls/x509 redis session connections
- Loading branch information
1 parent
b3f9f0a
commit 1cc76ba
Showing
14 changed files
with
253 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: redis-openemr-client | ||
spec: | ||
secretName: redis-openemr-client-certs | ||
duration: 87660h # 10y | ||
renewBefore: 360h # 15d | ||
isCA: false | ||
privateKey: | ||
size: 2048 | ||
algorithm: RSA | ||
encoding: PKCS1 | ||
usages: | ||
- digital signature | ||
- key encipherment | ||
- client auth | ||
subject: | ||
organizations: | ||
- openemr | ||
commonName: openemr | ||
issuerRef: | ||
name: ca-issuer | ||
kind: Issuer | ||
group: cert-manager.io |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: redis | ||
spec: | ||
secretName: redis-certs | ||
duration: 87660h # 10y | ||
renewBefore: 360h # 15d | ||
isCA: false | ||
privateKey: | ||
size: 2048 | ||
algorithm: RSA | ||
encoding: PKCS1 | ||
usages: | ||
- digital signature | ||
- key encipherment | ||
- server auth | ||
subject: | ||
organizations: | ||
- redis | ||
commonName: redis | ||
issuerRef: | ||
name: ca-issuer | ||
kind: Issuer | ||
group: cert-manager.io |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: redisproxy | ||
spec: | ||
secretName: redisproxy-certs | ||
duration: 87660h # 10y | ||
renewBefore: 360h # 15d | ||
isCA: false | ||
privateKey: | ||
size: 2048 | ||
algorithm: RSA | ||
encoding: PKCS1 | ||
usages: | ||
- digital signature | ||
- key encipherment | ||
- server auth | ||
subject: | ||
organizations: | ||
- redisproxy | ||
commonName: redisproxy | ||
issuerRef: | ||
name: ca-issuer | ||
kind: Issuer | ||
group: cert-manager.io |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: sentinel | ||
spec: | ||
secretName: sentinel-certs | ||
duration: 87660h # 10y | ||
renewBefore: 360h # 15d | ||
isCA: false | ||
privateKey: | ||
size: 2048 | ||
algorithm: RSA | ||
encoding: PKCS1 | ||
usages: | ||
- digital signature | ||
- key encipherment | ||
- server auth | ||
subject: | ||
organizations: | ||
- sentinel | ||
commonName: sentinel | ||
issuerRef: | ||
name: ca-issuer | ||
kind: Issuer | ||
group: cert-manager.io |
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
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
Oops, something went wrong.