[onap-discuss] Did You Know?

2018-01-25 Thread Keren Joseph
[cid:image002.png@01D395D7.784680B0] Did You Know? OOM allows for rolling upgrades of component containers OOM uses Helm K8S package manager to deploy ONAP components. Each component is arranged in a packaging format called a chart - a collection of files that describe a set of k8s resources.

[onap-discuss] Did You Know?

2018-01-24 Thread Yury Novitsky
[cid:image001.png@01D3951B.0E907480]Did You Know? OOM uses both readiness and liveness probes to monitor ONAP components health OOM makes use of kubernetes readiness and liveness probes feature. Note: The detailed description of the kubernetes feature can be found here:

[onap-discuss] Did You Know?

2018-01-24 Thread Yury Novitsky
[cid:image001.png@01D39523.C24D0DA0]Did You Know? OOM uses both readiness and liveness probes to monitor ONAP components health OOM makes use of kubernetes readiness and liveness probes feature. Note: The detailed description of the kubernetes feature can be found here:

[onap-discuss] Did You Know?

2018-01-22 Thread Borislav Glozman
[cid:image001.png@01D39363.9A0858C0] Did You Know? OOM enhances ONAP by deploying Logging framework OOM implements Logging Enhancement Project by deploying Elastic Stack and defining consistent logging

[onap-discuss] Did You Know?

2018-01-17 Thread Roger Maitland
[cid:image001.png@01D38FAC.4D03D500] Did You Know? OOM 'readiness' probes can be customized. When deploying ONAP with OOM a Kubernetes readiness probe is used determine if it is safe to start the next container in the dependency chain. This 'readiness' probe is usually quite simple

[onap-discuss] Did you know?

2018-01-15 Thread Mike Elliott
[cid:image002.png@01D38881.512F7620] Did You Know? OOM supports scaling stateful applications. OOM leverages the kubernetes capability to scale stateful applications. And this is done without the need to change any application code. [cid:EB30C46D-1DFA-4AD7-AF70-5FD0A61B569D] You can try these

[onap-discuss] Did You Know?

2018-01-12 Thread Mike Elliott
[cid:image002.png@01D38881.512F7620] Did You Know? OOM manages dependencies between ONAP components. OOM uses deployment descriptor files to define what components are deployed in ONAP. Inside the descriptor files, initContainers are used to ensure that dependent components are running and

[onap-discuss] Did You Know?

2018-01-11 Thread Alexis de Talhouƫt
Did You Know? OOM makes services available on any Node in a K8S cluster using a NodePort. This allows a service to be reachable on any node in the cluster, using a statically assigned NodePort (default range: 3-32767). NodePorts are automatically mapped to the internal port of a

[onap-discuss] Did You Know?

2018-01-08 Thread Roger Maitland
[cid:image002.png@01D38881.512F7620] Did You Know? OOM restarts ONAP components after a failure. OOM uses a Kubernetes controller to constantly monitor all of the deployed containers (pods) in an OOM deployment of ONAP automatically restarting any container that fails. If you'd like to try