Skip to main content

Redhat Openshift Container Platform

  • Red Hat open shift container platform(RHOCP) is a set of modular components and services that I built on top of the Kubernetes container infrastructure.
  • RHOCP adds capability to a production platform such as remote management, multitenancy, increased security, monitoring and auditing, application lifecycle management and self-service interfaces for developers.
  • Features
    • Developer workflow
      • Integrates a built in container registry, Continuous Integration / Continuous Delivery(CICD) pipelines, and Source-to-Image(S2I), a tool to build artifacts from source repositories to container images.
    • Routes
      • Exposes services to the outside world easily
    • Metrics and logging
      • Includes a built in and self analysing Matrix service and aggregated logging.
    • Unified UI
      • Provides unified tools and an integrated UI to manage the different capabilities.
  • Life cycle of application
    • Starts with the definition of a pod and the containers that it is composed of, which contain the application.
    • Pods are assigned to a healthy node.
    • Pods run until their containers exit.
    • Pods and their containers are removed from the node.

Comments