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
- Host: GitHub
- URL: https://github.com/redhat-scholars/inner-outer-guides
- Owner: redhat-scholars
- Created: 2023-04-21T08:39:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-25T15:56:18.000Z (about 2 years ago)
- Last Synced: 2025-03-31T00:06:25.036Z (about 1 year ago)
- Topics: argocd, containers, devspaces, gitops, tekton
- Language: Handlebars
- Homepage: https://redhat-scholars.github.io/inner-outer-guides
- Size: 74.8 MB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.adoc
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
----