Remove Openstack client image build

The Openstack client image build jobs
are now in openstack/loci repository.
Openstack client images are available here

quay.io/airshipit/openstack-client

Change-Id: I832672b1a692967f3cd9b6792a01aacd7c2a5e37
This commit is contained in:
Vladimir Kozhukalov
2025-05-14 18:58:39 -05:00
parent 0a1f94c062
commit cd29ce8a66
2 changed files with 0 additions and 130 deletions

View File

@@ -1,40 +0,0 @@
ARG FROM=ubuntu:jammy
FROM ${FROM}
ARG OPENSTACK_RELEASE=2023.2
ARG UPPER_CONSTRAINTS_FILE=https://releases.openstack.org/constraints/upper/${OPENSTACK_RELEASE}
RUN apt-get update && apt-get install -y \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install --upgrade pip && \
pip3 install \
-c${UPPER_CONSTRAINTS_FILE} \
cmd2 \
python-barbicanclient \
python-blazarclient \
python-cinderclient \
python-designateclient \
python-glanceclient \
python-heatclient \
python-ironicclient \
python-keystoneclient \
python-magnumclient \
python-manilaclient \
python-mistralclient \
python-monascaclient \
python-neutronclient \
python-novaclient \
python-octaviaclient \
python-openstackclient \
python-saharaclient \
python-swiftclient \
python-tackerclient \
python-troveclient \
python-vitrageclient \
python-watcherclient \
python-zaqarclient \
python-zunclient \
--ignore-installed

View File

@@ -1,90 +0,0 @@
---
# 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
#
# http://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.
- project:
check:
jobs:
- openstack-helm-images-build-openstack-client
gate:
jobs:
- openstack-helm-images-upload-openstack-client
promote:
jobs:
- openstack-helm-images-promote-openstack-client
periodic-weekly:
jobs:
- openstack-helm-images-upload-openstack-client
- openstack-helm-images-promote-openstack-client:
dependencies:
- name: openstack-helm-images-upload-openstack-client
- job:
name: openstack-helm-images-build-openstack-client
parent: openstack-helm-images-build
description: Build Openstack client images
vars: &openstack_client_vars
currentdate: "{{ now(utc=True,fmt='%Y%m%d') }}"
docker_images:
- context: openstack_client
repository: openstackhelm/openstack-client
dockerfile: Dockerfile.ubuntu
tags:
- master
- "master-{{ currentdate }}"
build_args:
- FROM=ubuntu:jammy
- OPENSTACK_RELEASE=master
- context: openstack_client
repository: openstackhelm/openstack-client
dockerfile: Dockerfile.ubuntu
tags:
- "2024.2"
- "2024.2-{{ currentdate }}"
build_args:
- FROM=ubuntu:jammy
- OPENSTACK_RELEASE=2024.2
- context: openstack_client
repository: openstackhelm/openstack-client
dockerfile: Dockerfile.ubuntu
tags:
- "2024.1"
- "2024.1-{{ currentdate }}"
build_args:
- FROM=ubuntu:jammy
- OPENSTACK_RELEASE=2024.1
- context: openstack_client
repository: openstackhelm/openstack-client
dockerfile: Dockerfile.ubuntu
tags:
- "2023.2"
- "2023.2-{{ currentdate }}"
build_args:
- FROM=ubuntu:jammy
- OPENSTACK_RELEASE=2023.2
files: &openstack_client_files
- openstack_client/.*
- zuul.d/openstack_client.yaml
- job:
name: openstack-helm-images-upload-openstack-client
parent: openstack-helm-images-upload
description: Build and upload Openstack client images
vars: *openstack_client_vars
files: *openstack_client_files
- job:
name: openstack-helm-images-promote-openstack-client
parent: openstack-helm-images-promote
description: Promote a previously published Openstack client image to latest.
vars: *openstack_client_vars
files: *openstack_client_files