This is a simple frontend that displays famous quotes from a backend Quote Generator.
export PROJECT=<namespace>
oc new-project ${PROJECT}
oc apply -f ./quotegen-frontend/oc_templates/frontend/is_frontend.yml -n ${PROJECT}
oc apply -f ./quotegen-frontend/oc_templates/frontend/svc_frontend.yml -n ${PROJECT}
oc apply -f ./quotegen-frontend/oc_templates/frontend/dc_frontend.yml -n ${PROJECT}
oc expose svc/frontend -n ${PROJECT}
{
"backend":"postgresql",
"quotes": {
"name":"Benjamin Franklin",
"quote":"Tell me and I forget. Teach me and I remember. Involve me and I learn."
}}
See https://github.com/snowjet/demo-quote-gen for backend