summaryrefslogtreecommitdiffstats
path: root/recipes-demo
Commit message (Collapse)AuthorAgeFilesLines
* demos/helloworld: fix S and UNPACKDIRBruce Ashfield2024-11-151-0/+3
| | | | | | | Adapt the demonstration helloworld appliication to fix a warning about UNPACKDIR not being correct. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
* app-container-curl: add space for IMAGE_INSTALL:appendChris Laplante2024-11-121-1/+1
| | | | | Signed-off-by: Chris Laplante <chris.laplante@agilent.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
* app-container: add space for IMAGE_INSTALL:appendChris Laplante2024-11-121-1/+1
| | | | | Signed-off-by: Chris Laplante <chris.laplante@agilent.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
* helloworkd-flask: convert WORKDIR references to UNPACKDIRBruce Ashfield2024-05-291-9/+9
| | | | | | | unpacked source files are now in UNPACKDIR, so we adjust our operations to match. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
* app-container: temporarily copy contens of .inc file to recipeBruce Ashfield2022-09-121-1/+37
| | | | | | | | Variable overrides have stopped working when this specific .inc file are used. To keep the demo working, we temporarily copy the exact contents of the .inc file into the recipe .. and all is well. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
* demo: add a sample container that just contains curlBruce Ashfield2022-09-121-0/+46
| | | | | | | This is useful for demonstrating how entry points and functionality can be delivered in containers Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
* demo: add flask and k3s deployment filesBruce Ashfield2021-12-135-0/+119
To enable demonstrations of application container builds, and deployment to k*s clusters, we introduce a simple recipes-demo/ structure with a sample flask application and deployment yaml. i.e. ensure that "helloworld-flask-deploy" is installed on your image, and then: % kubectl apply -f /etc/flask-app.yaml % kubectl label pods zeddii-pod new-label=yoctorule % kubectl expose pod zeddii-pod --port=9000 --target-port=9000 --type=LoadBalancer --name=my-service Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>