diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-03-06 11:59:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-06 11:59:42 +0000 |
commit | 0dfaa2b8618c959fa1ad91de737734b4301c8f5d (patch) | |
tree | 3265331ba321e35fe65053b9aefe4eb17a5c2311 /docs | |
parent | fee79558f76d8007e44514c0b7694dc3e1165372 (diff) |
Update git submodules
* Update docs/submodules/oom.git from branch 'master'
to 08d000c6519add68d23f6ea089e8df2c311155cc
- Merge "[COMMON] Handle TLS/Non-TLS for Service"
- [COMMON] Handle TLS/Non-TLS for Service
Current service and headlessService templates doesn't handle the fact
that out of cluster ports must be TLS encrypted only.
With a new (backward compatible) DSL, this is now possible.
In values.yaml, all ports in service part with port AND plain_port will
have the ability to be HTTP or HTTPS depending on the context.
Per default, they'll be HTTPS.
TLS choice will be done according this table:
| tlsOverride | global.tlsEnabled | global.serviceMesh.enabled | global.serviceMesh.tls | result |
|-------------|-------------------|----------------------------|------------------------|--------|
| not present | not present | not present | any | true |
| not present | not present | false | any | true |
| not present | not present | true | false | true |
| not present | not present | true | true | false |
| not present | true | any | any | true |
| not present | false | any | any | false |
| true | any | any | any | true |
| false | any | any | any | false |
Service template will create one or two service templates according to this table:
| serviceType | both_tls_and_plain | result |
|---------------|--------------------|--------------|
| ClusterIP | any | one Service |
| Not ClusterIP | not present | one Service |
| Not ClusterIP | false | one Service |
| Not ClusterIP | true | two Services |
If two services are created, one is ClusterIP with both crypted and plain
ports and the other one is NodePort (or LoadBalancer) with crypted port only.
Issue-ID: OOM-1936
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: If766dd73132022d1a6e578fd36113c461bb91ea5
Diffstat (limited to 'docs')
m--------- | docs/submodules/oom.git | 0 |
1 files changed, 0 insertions, 0 deletions
diff --git a/docs/submodules/oom.git b/docs/submodules/oom.git -Subproject a0c81fb9188d01d569e973c5b680b00794deb0c +Subproject 08d000c6519add68d23f6ea089e8df2c311155c |