Files
porthole/zuul.d/kubeadm-utility.yaml
Ruslan Aliev 2f1cc5e48c Add kubeadm-utility image
This image will have all the necessary kubernetes binaries
for kubeadm related operations.

Change-Id: I301e5fa0b26bad8c49b021d2c267620d940628ed
Signed-off-by: Ruslan Aliev <raliev@mirantis.com>
2025-07-01 16:28:50 -05:00

56 lines
1.6 KiB
YAML

---
# Copyright 2019 AT&T Intellectual Property. All other rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- job:
name: airship-porthole-images-build-kubeadm-utility
parent: airship-porthole-images
abstract: true
vars:
image_name: porthole-kubeadm-utility
files:
- ^images/kubeadm-utility/.*$
- ^Makefile$
- ^tools/.*$
- ^zuul.d/.*$
- job:
name: airship-porthole-images-publish-kubeadm-utility
parent: airship-porthole-images
abstract: true
secrets: &secrets
- name: quay_credentials
secret: quay_credentials
pass-to-parent: true
vars:
image_name: porthole-kubeadm-utility
publish: true
tags:
dynamic:
commit: true
- job:
name: airship-porthole-images-jammy-build-kubeadm-utility
parent: airship-porthole-images-build-kubeadm-utility
vars:
distro_suffix: ubuntu_jammy
- job:
name: airship-porthole-images-jammy-publish-kubeadm-utility
parent: airship-porthole-images-publish-kubeadm-utility
secrets: *secrets
vars:
distro_suffix: ubuntu_jammy
...