Multiple small changes post j7s-os work, dev_contain merge.

This commit is contained in:
James Pace 2022-12-21 19:34:25 -05:00
parent 0dc9a94764
commit 5dc94a6d69
3 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# A pipeline to build j7s-os images. # A pipeline to build j7s-os images.
# Steps: # Steps:
# Clone the j7s-os repo from gitea. # Clone the j7s-os repo from onedev.
# Call make <> in the repo. # Call make <> in the repo.
# Build and push a new deployment container. # Build and push a new deployment container.
# Deploy the deployment container as a service. # Deploy the deployment container as a service.
@ -18,6 +18,10 @@ spec:
- name: short-name - name: short-name
type: string type: string
description: A short name for this image from which other names a derived. (aka j7-os) description: A short name for this image from which other names a derived. (aka j7-os)
- name: branch
type: string
default: main
description: branch of j7s-os image to build.
workspaces: workspaces:
- name: shared-data - name: shared-data
description: Shared data. description: Shared data.
@ -34,7 +38,7 @@ spec:
- name: url - name: url
value: ssh://git@git.jpace121.net:2222/public/j7s-os value: ssh://git@git.jpace121.net:2222/public/j7s-os
- name: branch - name: branch
value: main value: $(params.branch)
taskRef: taskRef:
name: j7s-git-clone name: j7s-git-clone
- name: image-build - name: image-build

View File

@ -24,4 +24,4 @@ spec:
- name: branch - name: branch
value: "packaging/debian" value: "packaging/debian"
- name: deploy - name: deploy
value: "false" value: "true"

View File

@ -22,4 +22,6 @@ spec:
value: cs9-qemu-minimal-ostree.x86_64.repo value: cs9-qemu-minimal-ostree.x86_64.repo
- name: short-name - name: short-name
value: j7s-os value: j7s-os
- name: branch
value: main
serviceAccountName: internal-kubectl serviceAccountName: internal-kubectl