-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support renegotiationEnabled on ssl custom profiles (#3219)
- Loading branch information
1 parent
4429cf2
commit 3732736
Showing
11 changed files
with
166 additions
and
58 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
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
9 changes: 9 additions & 0 deletions
9
...ource/VirtualServerWithTLSProfile/tls-with-ssl-renegotiation-disabled/README.md
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,9 @@ | ||
# Disable Renegotiation on Custom SSL Profiles created by CIS through secrets | ||
|
||
## tls-ssl-secrets-renegotiation-disabled.yml | ||
|
||
By deploying this yaml file in your cluster, CIS will create custom SSL profiles with renegotiation disabled on BIG-IP. | ||
|
||
## virtualserver.yml | ||
By deploying this yaml file in your cluster, CIS will create a Virtual Server on BIG-IP with VIP "172.16.3.5". | ||
It will load balance the traffic for domain coffee.example.com |
18 changes: 18 additions & 0 deletions
18
...LSProfile/tls-with-ssl-renegotiation-disabled/tls-ssl-secrets-renegotiation-disabled.yaml
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,18 @@ | ||
apiVersion: cis.f5.com/v1 | ||
kind: TLSProfile | ||
metadata: | ||
name: reencrypt-tls-coffee | ||
labels: | ||
f5cr: "true" | ||
spec: | ||
tls: | ||
termination: reencrypt | ||
clientSSL: clientssl-secret | ||
serverSSLs: serverssl-secret | ||
reference: secret | ||
clientSSLParams: | ||
renegotiationEnabled: false | ||
sererSSLParams: | ||
renegotiationEnabled: false | ||
hosts: | ||
- coffee.example.com |
15 changes: 15 additions & 0 deletions
15
...esource/VirtualServerWithTLSProfile/tls-with-ssl-renegotiation-disabled/virtualserver.yml
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,15 @@ | ||
apiVersion: cis.f5.com/v1 | ||
kind: VirtualServer | ||
metadata: | ||
labels: | ||
f5cr: "true" | ||
name: coffee-virtual-server | ||
namespace: default | ||
spec: | ||
tlsProfileName: reencrypt-tls-coffee | ||
host: coffee.example.com | ||
pools: | ||
- path: /lattee | ||
service: svc | ||
servicePort: 80 | ||
virtualServerAddress: 172.16.3.5 |
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.