An open API service indexing awesome lists of open source software.

https://github.com/redhat-scholars/inner-outer-guides

OpenShift Inner and Outer Loop Development Tutorial
https://github.com/redhat-scholars/inner-outer-guides

argocd containers devspaces gitops tekton

Last synced: about 1 year ago
JSON representation

OpenShift Inner and Outer Loop Development Tutorial

Awesome Lists containing this project

README

          

# OpenShift Inner & Outer Loop Development Guides

This repository contains the source for the OpenShift Inner & Outer Loop Development Guides.

## Local development

### Gulp

[source,bash]
----
npm install
gulp
----

### Container

[source,bash]
----
podman build -t localhost/inner-outer-guides .
podman run --rm --name guides -d -p 4000:8080 localhost/inner-outer-guides
----

## Deploy to OpenShift

[source,bash]
----
oc new-app https://github.com/redhat-scholars/inner-outer-guides.git --strategy=docker
oc create route edge inner-outer-guides --service=inner-outer-guides
# To rebuild after changes pushed to git
oc start-build inner-outer-guides --follow
----