-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* rebasing from the source * update resource config * fix uts
- Loading branch information
1 parent
3d9ed5b
commit 4fd9827
Showing
11 changed files
with
378 additions
and
21 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
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
20 changes: 20 additions & 0 deletions
20
...fig_examples/customResource/TransportServer/transport-server-with-tls/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,20 @@ | ||
# Transport server with TLS | ||
This section demonstrates the option to configure TLS in transport server. | ||
|
||
Option which can be used is: | ||
``` | ||
tls: | ||
clientSSLs: | ||
- | ||
serverSSLs: | ||
- | ||
reference: | ||
``` | ||
|
||
## ts-with-tls-bigip-ref.yaml | ||
|
||
By deploying this yaml file in your cluster, CIS will create a transport server with BIGIP TLS Configuration. | ||
|
||
## ts-with-tls-secret-ref.yaml | ||
|
||
By deploying this yaml file in your cluster, CIS will create a transport server with k8s Secret TLS Configuration. |
30 changes: 30 additions & 0 deletions
30
...mples/customResource/TransportServer/transport-server-with-tls/ts-with-tls-bigip-ref.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,30 @@ | ||
apiVersion: cis.f5.com/v1 | ||
kind: TransportServer | ||
metadata: | ||
labels: | ||
f5cr: "true" | ||
name: cr-transport-server | ||
namespace: default | ||
spec: | ||
allowVlans: [] | ||
iRules: | ||
- /Common/test_rule2 | ||
mode: standard | ||
partition: dev | ||
pool: | ||
monitor: | ||
interval: 20 | ||
timeout: 10 | ||
type: udp | ||
service: pytest-svc-1 | ||
servicePort: 1344 | ||
snat: auto | ||
type: udp | ||
virtualServerAddress: 10.8.3.11 | ||
virtualServerPort: 1344 | ||
tls: | ||
clientSSLs: | ||
- /Common/clientssl | ||
serverSSLs: | ||
- /Common/serverssl | ||
reference: bigip |
30 changes: 30 additions & 0 deletions
30
...ples/customResource/TransportServer/transport-server-with-tls/ts-with-tls-secret-ref.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,30 @@ | ||
apiVersion: cis.f5.com/v1 | ||
kind: TransportServer | ||
metadata: | ||
labels: | ||
f5cr: "true" | ||
name: cr-transport-server | ||
namespace: default | ||
spec: | ||
allowVlans: [] | ||
iRules: | ||
- /Common/test_rule2 | ||
mode: standard | ||
partition: dev | ||
pool: | ||
monitor: | ||
interval: 20 | ||
timeout: 10 | ||
type: udp | ||
service: pytest-svc-1 | ||
servicePort: 1344 | ||
snat: auto | ||
type: tcp | ||
virtualServerAddress: 10.8.3.11 | ||
virtualServerPort: 1344 | ||
tls: | ||
clientSSLs: | ||
- foo-secret | ||
serverSSLs: | ||
- foo-back-secret | ||
reference: secret |
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.