Browse Source

devoxx 2025

devoxx-france-2025
Nicolas Massé 7 months ago
parent
commit
fe8d2d5192
  1. 21
      examples/bootc/src/Containerfile
  2. 3
      examples/htop/tekton/pipeline.yaml
  3. 2
      examples/htop/tekton/pipelinerun.yaml
  4. 3
      examples/nodejs/tekton/pipeline.yaml
  5. 2
      examples/nodejs/tekton/pipelinerun.yaml
  6. 3
      examples/quarkus/tekton/pipeline.yaml
  7. 2
      examples/quarkus/tekton/pipelinerun.yaml

21
examples/bootc/src/Containerfile

@ -1,4 +1,21 @@
FROM quay.io/fedora/fedora-bootc:41
RUN dnf install -y htop \
&& dnf clean all
RUN <<EOF
set -Eeuo pipefail
# Install HTOP
dnf install -y htop
dnf clean all
# Change root password
echo root | passwd --stdin
EOF
# Update (later in the demo)
#RUN <<EOF
#set -Eeuo pipefail
#
#mkdir /opt/devoxx-2025
#echo 'Hello, world!' > /opt/devoxx-2025/hello
#EOF

3
examples/htop/tekton/pipeline.yaml

@ -12,6 +12,9 @@ spec:
params:
- name: git-url
type: string
- name: git-revision
type: string
default: main
- name: image-name
type: string
- name: context-dir

2
examples/htop/tekton/pipelinerun.yaml

@ -8,6 +8,8 @@ spec:
params:
- name: git-url
value: https://github.com/nmasse-itix/tekton-pipeline-multiarch.git
- name: git-revision
value: devoxx-france-2025
- name: image-name
value: quay.io/nmasse-redhat/htop-multiarch
- name: context-dir

3
examples/nodejs/tekton/pipeline.yaml

@ -12,6 +12,9 @@ spec:
params:
- name: git-url
type: string
- name: git-revision
type: string
default: main
- name: image-name
type: string
- name: context-dir

2
examples/nodejs/tekton/pipelinerun.yaml

@ -8,6 +8,8 @@ spec:
params:
- name: git-url
value: https://github.com/nmasse-itix/tekton-pipeline-multiarch.git
- name: git-revision
value: devoxx-france-2025
- name: image-name
value: quay.io/nmasse-redhat/nodejs-hello-world-multiarch
- name: context-dir

3
examples/quarkus/tekton/pipeline.yaml

@ -13,6 +13,9 @@ spec:
params:
- name: git-url
type: string
- name: git-revision
type: string
default: main
- name: image-name
type: string
- name: context-dir

2
examples/quarkus/tekton/pipelinerun.yaml

@ -8,6 +8,8 @@ spec:
params:
- name: git-url
value: https://github.com/nmasse-itix/tekton-pipeline-multiarch.git
- name: git-revision
value: devoxx-france-2025
- name: image-name
value: quay.io/nmasse-redhat/quarkus-getting-started-multiarch
- name: context-dir

Loading…
Cancel
Save