This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Add build support of S2I build #309
Comments
Also before doing this, we should implement #331 |
This is not related to BuildConfigs in Kedge file. It should be about adding another building strategy for |
First version of this should allow to set image name and builder image
this command should generate something similar to this: apiVersion: v1
kind: ImageStream
metadata:
name: output-image
spec:
tags:
- name: latest
---
kind: BuildConfig
apiVersion: v1
metadata:
name: output-image
spec:
strategy:
type: Binary
sourceStrategy:
from:
kind: DockerImage
name: builderImage:tag
output:
to:
kind: "ImageStreamTag"
name: "output-image:latest" and than run |
closed in #452 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This is again a specific use case that solves the build story #273 for kedge using OpenShift S2I.
buildconfig
andimagestream
The text was updated successfully, but these errors were encountered: