openshift Authentication
- Authentication: OpenShift has several built-in authentication methods to allow granular access to OpenShift projects:
- Local authentication
- LDAP authentication
- Request header authentication
- Keystone authentication
- GitHub authentication
- Internal Image Registry: OpenShift uses an internal registry to store images in OpenShift that are ready to be deployed on OpenShift nodes. It is also used for S2I builds.
- GUI and web console: OpenShift provides an easy-to-use web interface, powerful enough to create, build, deploy, update, and troubleshoot OpenShift projects and microservice applications running inside OpenShift.
- SCM Integration: OpenShift has built-in integration with Git. This solution is tightly coupled with an image builder.
- Image builders: Process that is used to transform image parameters or source code into a runnable image.
- CI/CD Integration: OpenShift provides very flexible integration with Jenkins for Continuous Integration and Continuous Delivery pipelines. It scales the pipeline execution through Jenkins provisioning in containers. This allows Jenkins to run as many jobs in parallel as required and scales solutions on demand out of the box.
- Additional Kubernetes resource extensions: There is a set of resources added to Kubernetes by OpenShift:
- Deployment Configurations (DC): This is a set of pods created from the same container image.
- Build Configurations (BC): Primarily used by S2I to build an image from source code in Git.
- Routes: DNS hostname service used by the OpenShift router as an ingress point for OpenShift applications,
- REST API: In addition to the Kubernetes API, OpenShift provides its own API interface to leverage all the features of automation and seamless integration with external platforms, other automation frameworks, and DevOps solutions.
Comments
Post a Comment