OpenShift Ansible

OpenShift安装和配置管理。(OpenShift Installation and Configuration Management.)

Github stars Tracking Chart

通知

主分支关闭了!devel-40正在进行一项重大改造。 3.x的更改应直接发送到与之相关并从那里向后移植的最新版本分支。

OpenShift Ansible

此存储库包含安装、升级和管理OpenShift集群的Ansible角色和手册。

注意:此存储库中的Ansible playbooks需要一个提供docker的RPM包。目前,来自dockerproject.org的RPM不提供此要求,但可能在将来使用。 #2720正在跟踪此限制。

获得正确的版本

选择openshift版本时,请确保您的发行版存储库中有必要的源包。默认情况下,openshift-ansible不会为最终用户配置额外的存储库以测试或暂存程序包。

我们建议使用发布分支。我们维护与上游Origin版本相对应的稳定分支,例如:我们保证openshift-ansible 3.2版本将完全支持origin 1.2版本

最新的分支通常会收到次要的功能后退和修复。较旧的分支机构只会收到关键修复程序。

除了发布分支之外,主分支还跟踪我们当前的开发工作,并且应该与Origin主分支(开发中的代码)兼容。

Overview

Name With Owneropenshift/openshift-ansible
Primary LanguagePython
Program languagePython (Language Count: 5)
PlatformLinux
License:Apache License 2.0
Release Count3413
Last Release Nameopenshift-ansible-3.11.1159-1 (Posted on 2023-09-20 19:24:22)
First Release Namev3-beta2-03-09-15 (Posted on )
Created At2014-09-16 17:07:51
Pushed At2024-04-10 14:26:39
Last Commit At2024-04-10 13:04:11
Stargazers Count2.2k
Watchers Count139
Fork Count2.3k
Commits Count14.6k
Has Issues Enabled
Issues Count2754
Issue Open Count1
Pull Requests Count8158
Pull Requests Open Count1
Pull Requests Close Count1585
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

Join the chat at https://gitter.im/openshift/openshift-ansible
Build Status

OpenShift Ansible

This repository contains Ansible roles and
playbooks for OpenShift clusters.

Previous OpenShift Ansible 3.x releases

For 3.x releases of OpenShift Ansible please reference the release branch for
specific versions. The last 3.x release is
3.11 release.

OpenShift 4.x

Installation of OpenShift 4.x uses a command-line installation wizard instead of
Ansible playbooks. Learn more about the OpenShift Installer in this
overview.

For OpenShift 4.x, this repo only provides playbooks necessary for scaling up or
upgrading RHEL hosts in an existing 4.x cluster.

The master branch
tracks our current work in development.

Requirements: (localhost)

  • Ansible >= 2.9.1
  • OpenShift Client (oc)

Quickstart

Install an OpenShift 4.x cluster

Install a cluster using the OpenShift Installer.

Create an Ansible Inventory

Create an inventory file with the appropriate groups and variables defined.
An example inventory can be found in inventory/hosts.example.

Required variables include:

  • openshift_kubeconfig_path - Path to the kubeconfig for the cluster

Run the RHEL node scaleup playbook

cd openshift-ansible
ansible-playbook -i inventory/hosts playbooks/scaleup.yml

Run the RHEL node upgrade playbook

Custom tasks can be performed during upgrades at different stages of the upgrade.
See the hooks documentation for more information.

cd openshift-ansible
ansible-playbook -i inventory/hosts playbooks/upgrade.yml

Further reading

Complete Production Installation Documentation:

Containerized OpenShift Ansible

See README_CONTAINER_IMAGE.md for information on how to package openshift-ansible as a container image.

Contributing

See the contribution guide.

Building openshift-ansible RPMs and container images

See the build instructions.

To the top