-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MSSQLServer TLS/SSL Encryption doc
Signed-off-by: Neaj Morshad <[email protected]>
- Loading branch information
1 parent
88c26cd
commit 9debece
Showing
10 changed files
with
668 additions
and
0 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,7 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: redis-ca-issuer | ||
spec: | ||
ca: | ||
secretName: redis-ca |
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,8 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: Issuer | ||
metadata: | ||
name: redis-ca-issuer | ||
namespace: demo | ||
spec: | ||
ca: | ||
secretName: redis-ca |
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,23 @@ | ||
apiVersion: kubedb.com/v1 | ||
kind: Redis | ||
metadata: | ||
name: rd-tls | ||
namespace: demo | ||
spec: | ||
version: "6.2.14" | ||
mode: Cluster | ||
cluster: | ||
shards: 3 | ||
replicas: 1 | ||
tls: | ||
issuerRef: | ||
apiGroup: "cert-manager.io" | ||
kind: Issuer | ||
name: redis-ca-issuer | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi |
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,24 @@ | ||
apiVersion: kubedb.com/v1 | ||
kind: Redis | ||
metadata: | ||
name: rd-tls | ||
namespace: demo | ||
spec: | ||
version: "6.2.14" | ||
mode: Sentinel | ||
replicas: 3 | ||
sentinelRef: | ||
name: sen-tls | ||
namespace: demo | ||
tls: | ||
issuerRef: | ||
apiGroup: "cert-manager.io" | ||
kind: ClusterIssuer | ||
name: redis-ca-issuer | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi |
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,19 @@ | ||
apiVersion: kubedb.com/v1 | ||
kind: Redis | ||
metadata: | ||
name: rd-tls | ||
namespace: demo | ||
spec: | ||
version: "6.2.14" | ||
tls: | ||
issuerRef: | ||
apiGroup: "cert-manager.io" | ||
kind: Issuer | ||
name: redis-ca-issuer | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi |
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,20 @@ | ||
apiVersion: kubedb.com/v1 | ||
kind: RedisSentinel | ||
metadata: | ||
name: sen-tls | ||
namespace: demo | ||
spec: | ||
replicas: 3 | ||
version: "6.2.14" | ||
tls: | ||
issuerRef: | ||
apiGroup: "cert-manager.io" | ||
kind: ClusterIssuer | ||
name: redis-ca-issuer | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi |
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,10 @@ | ||
--- | ||
title: Run Microsoft SQL Server with TLS | ||
menu: | ||
docs_{{ .version }}: | ||
identifier: ms-tls | ||
name: TLS/SSL Encryption | ||
parent: guides-mssqlserver | ||
weight: 45 | ||
menu_name: docs_{{ .version }} | ||
--- |
Oops, something went wrong.