https://github.com/slauger/openshift-sdk
OpenShift SDK Image with ansible, openshift-installer, oc, kubectl and helm.
https://github.com/slauger/openshift-sdk
cli openshift sdk
Last synced: 6 months ago
JSON representation
OpenShift SDK Image with ansible, openshift-installer, oc, kubectl and helm.
- Host: GitHub
- URL: https://github.com/slauger/openshift-sdk
- Owner: slauger
- License: mit
- Created: 2021-05-02T13:52:47.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-11-04T07:50:09.000Z (8 months ago)
- Last Synced: 2025-11-04T09:22:31.723Z (8 months ago)
- Topics: cli, openshift, sdk
- Language: Makefile
- Homepage: https://quay.io/slauger/openshift-sdk
- Size: 74.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# openshift-sdk
[](https://travis-ci.com/slauger/openshift-sdk)
OpenShift SDK Image with `ansible`, `openshift-installer`, `oc`, `kubectl` and `helm`.
Can be used for configuration and deployment CI/CD pipelines on OpenShift clusters.
## Run
### Docker
```
docker run -it quay.io/slauger/openshift-sdk:
```
### Podman
```
podman run -it quay.io/slauger/openshift-sdk:
```
## Build OCP
```
export DEPLOYMENT_TYPE=ocp
export RELEASE_CHANNEL=stable-4.8
export OPENSHIFT_RELEASE=$(make print_version)
export CONTAINER_NAME=registry.local/openshift-sdk
```
## Build OKD
```
export DEPLOYMENT_TYPE=okd
export OPENSHIFT_RELEASE=$(make print_version)
export CONTAINER_NAME=registry.local/openshift-sdk
```
## Run Build
```
make fetch
make build
make test
make push
```