Airflow 2.10.2 + ubuntu_jammy
Change-Id: I4c2ce3717dd18dcc7f514ac5aa5f3a3b44199dd5
This commit is contained in:
parent
e4c9fdb861
commit
ac573b9fb5
2
Makefile
2
Makefile
@ -25,7 +25,7 @@ PUSH_IMAGE ?= false
|
|||||||
# use this variable for image labels added in internal build process
|
# use this variable for image labels added in internal build process
|
||||||
LABEL ?= org.airshipit.build=community
|
LABEL ?= org.airshipit.build=community
|
||||||
COMMIT ?= $(shell git rev-parse HEAD)
|
COMMIT ?= $(shell git rev-parse HEAD)
|
||||||
DISTRO ?= ubuntu_focal
|
DISTRO ?= ubuntu_jammy
|
||||||
PYTHON = python3
|
PYTHON = python3
|
||||||
CHARTS := $(filter-out deps, $(patsubst charts/%/.,%,$(wildcard charts/*/.)))
|
CHARTS := $(filter-out deps, $(patsubst charts/%/.,%,$(wildcard charts/*/.)))
|
||||||
IMAGE := ${DOCKER_REGISTRY}/${IMAGE_PREFIX}/${IMAGE_NAME}:${IMAGE_TAG}-${DISTRO}
|
IMAGE := ${DOCKER_REGISTRY}/${IMAGE_PREFIX}/${IMAGE_NAME}:${IMAGE_TAG}-${DISTRO}
|
||||||
|
97
images/promenade/Dockerfile.ubuntu_jammy
Normal file
97
images/promenade/Dockerfile.ubuntu_jammy
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
# Copyright 2017 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
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
ARG FROM=ubuntu:jammy
|
||||||
|
FROM ${FROM}
|
||||||
|
|
||||||
|
LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode' \
|
||||||
|
org.opencontainers.image.url='https://airshipit.org' \
|
||||||
|
org.opencontainers.image.documentation='https://airship-promenade.readthedocs.org' \
|
||||||
|
org.opencontainers.image.source='https://opendev.org/airship/promenade' \
|
||||||
|
org.opencontainers.image.vendor='The Airship Authors' \
|
||||||
|
org.opencontainers.image.licenses='Apache-2.0'
|
||||||
|
|
||||||
|
VOLUME /etc/promenade
|
||||||
|
VOLUME /target
|
||||||
|
|
||||||
|
RUN mkdir /opt/promenade
|
||||||
|
WORKDIR /opt/promenade
|
||||||
|
|
||||||
|
ENV PORT 9000
|
||||||
|
EXPOSE $PORT
|
||||||
|
|
||||||
|
ENV LANG=C.UTF-8
|
||||||
|
ENV LC_ALL=C.UTF-8
|
||||||
|
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
ENV TZ=Etc/UTC
|
||||||
|
|
||||||
|
ENTRYPOINT ["/opt/promenade/entrypoint.sh"]
|
||||||
|
|
||||||
|
RUN set -ex \
|
||||||
|
&& apt update -qq \
|
||||||
|
&& apt upgrade -y \
|
||||||
|
&& apt-get install --no-install-recommends -y \
|
||||||
|
automake \
|
||||||
|
ca-certificates \
|
||||||
|
curl \
|
||||||
|
dnsutils \
|
||||||
|
gcc \
|
||||||
|
git \
|
||||||
|
gpg \
|
||||||
|
gpg-agent \
|
||||||
|
libpcre3-dev \
|
||||||
|
libtool \
|
||||||
|
libpq-dev \
|
||||||
|
make \
|
||||||
|
python3-dev \
|
||||||
|
python3-pip \
|
||||||
|
python3-setuptools \
|
||||||
|
rsync \
|
||||||
|
&& ln -s /usr/bin/python3 /usr/bin/python \
|
||||||
|
&& curl -Lo /usr/local/bin/cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 \
|
||||||
|
&& chmod 555 /usr/local/bin/cfssl \
|
||||||
|
&& python3 -m pip install -U pip \
|
||||||
|
&& apt-get autoremove -yqq --purge \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& useradd -u 1000 -g users -d /opt/promenade promenade \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Install LibYAML
|
||||||
|
ENV LD_LIBRARY_PATH=/usr/local/lib
|
||||||
|
|
||||||
|
ARG LIBYAML_VERSION=0.2.5
|
||||||
|
RUN set -ex \
|
||||||
|
&& git clone https://github.com/yaml/libyaml.git \
|
||||||
|
&& cd libyaml \
|
||||||
|
&& git checkout $LIBYAML_VERSION \
|
||||||
|
&& ./bootstrap \
|
||||||
|
&& ./configure \
|
||||||
|
&& make \
|
||||||
|
&& make install \
|
||||||
|
&& cd .. \
|
||||||
|
&& rm -fr libyaml
|
||||||
|
|
||||||
|
COPY requirements-frozen.txt /opt/promenade
|
||||||
|
RUN pip3 install --no-cache-dir -r requirements-frozen.txt
|
||||||
|
|
||||||
|
# Setting promenade version for BPR
|
||||||
|
ENV PBR_VERSION 0.9.0
|
||||||
|
|
||||||
|
COPY . /opt/promenade
|
||||||
|
RUN pip3 install --verbose --editable /opt/promenade \
|
||||||
|
&& echo "/opt/promenade" \
|
||||||
|
> /usr/local/lib/python3.10/dist-packages/promenade.pth
|
||||||
|
|
||||||
|
USER promenade
|
@ -1,4 +1,4 @@
|
|||||||
Deckhand @ git+https://opendev.org/airship/deckhand.git@32e9950db405b5d1eb74da0c4e8df344a8638eff#egg=deckhand
|
Deckhand @ git+https://opendev.org/airship/deckhand.git@be9f97b846b1edc6b74777e5e639aa9edce8cfa6#egg=deckhand
|
||||||
Beaker
|
Beaker
|
||||||
click
|
click
|
||||||
falcon
|
falcon
|
||||||
|
@ -1,59 +1,56 @@
|
|||||||
alembic==1.13.1
|
alembic==1.13.2
|
||||||
amqp==5.2.0
|
amqp==5.2.0
|
||||||
attrs==23.2.0
|
attrs==24.2.0
|
||||||
autopage==0.5.2
|
autopage==0.5.2
|
||||||
backports.zoneinfo==0.2.1
|
|
||||||
barbican==16.0.0
|
barbican==16.0.0
|
||||||
bcrypt==4.1.2
|
bcrypt==4.2.0
|
||||||
Beaker==1.12.1
|
Beaker==1.13.0
|
||||||
cachetools==5.3.2
|
cachetools==5.5.0
|
||||||
castellan==4.4.0
|
castellan==5.1.1
|
||||||
certifi==2024.2.2
|
certifi==2024.8.30
|
||||||
cffi==1.16.0
|
cffi==1.17.1
|
||||||
charset-normalizer==3.3.2
|
charset-normalizer==3.3.2
|
||||||
click==8.1.7
|
click==8.1.7
|
||||||
cliff==4.6.0
|
cliff==4.7.0
|
||||||
cmd2==2.4.3
|
cmd2==2.4.3
|
||||||
cryptography==41.0.7
|
cryptography==42.0.8
|
||||||
debtcollector==3.0.0
|
debtcollector==3.0.0
|
||||||
Deckhand @ git+https://opendev.org/airship/deckhand.git@fd58230f6e31ede4925bab0325105eb5b05ad1a8
|
Deckhand @ git+https://opendev.org/airship/deckhand.git@be9f97b846b1edc6b74777e5e639aa9edce8cfa6
|
||||||
decorator==5.1.1
|
decorator==5.1.1
|
||||||
deepdiff==6.7.1
|
deepdiff==8.0.1
|
||||||
dnspython==2.6.1
|
dnspython==2.6.1
|
||||||
dogpile.cache==1.3.2
|
dogpile.cache==1.3.3
|
||||||
eventlet==0.35.2
|
eventlet==0.37.0
|
||||||
falcon==3.1.3
|
falcon==3.1.3
|
||||||
fasteners==0.19
|
fasteners==0.19
|
||||||
fixtures==4.1.0
|
fixtures==4.1.0
|
||||||
futurist==3.0.0
|
futurist==3.0.0
|
||||||
google-auth==2.28.1
|
google-auth==2.34.0
|
||||||
greenlet==3.0.3
|
greenlet==3.1.0
|
||||||
html5lib==0.9999999
|
html5lib==0.9999999
|
||||||
httpexceptor==1.4.0
|
httpexceptor==1.4.0
|
||||||
idna==3.6
|
idna==3.10
|
||||||
importlib-metadata==6.11.0
|
|
||||||
importlib-resources==5.13.0
|
|
||||||
iso8601==2.1.0
|
iso8601==2.1.0
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
jsonpath-ng==1.6.1
|
jsonpath-ng==1.6.1
|
||||||
jsonpickle==3.0.3
|
jsonpickle==3.3.0
|
||||||
jsonschema==4.21.1
|
jsonschema==4.23.0
|
||||||
jsonschema-specifications==2023.12.1
|
jsonschema-specifications==2023.12.1
|
||||||
keystoneauth1==5.1.2
|
keystoneauth1==5.1.2
|
||||||
keystonemiddleware==10.2.0
|
keystonemiddleware==10.2.0
|
||||||
kombu==5.3.5
|
kombu==5.4.1
|
||||||
kubernetes==29.0.0
|
kubernetes==30.1.0
|
||||||
ldap3==2.9.1
|
ldap3==2.9.1
|
||||||
logutils==0.3.5
|
logutils==0.3.5
|
||||||
Mako==1.3.2
|
Mako==1.3.5
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
microversion-parse==1.0.1
|
microversion-parse==2.0.0
|
||||||
msgpack==1.0.7
|
msgpack==1.1.0
|
||||||
netaddr==1.2.1
|
netaddr==1.3.0
|
||||||
netifaces==0.11.0
|
netifaces==0.11.0
|
||||||
networkx==3.1
|
networkx==3.3
|
||||||
oauthlib==3.2.2
|
oauthlib==3.2.2
|
||||||
ordered-set==4.1.0
|
orderly-set==5.2.2
|
||||||
os-service-types==1.7.0
|
os-service-types==1.7.0
|
||||||
oslo.cache==3.3.1
|
oslo.cache==3.3.1
|
||||||
oslo.concurrency==5.1.1
|
oslo.concurrency==5.1.1
|
||||||
@ -71,67 +68,64 @@ oslo.service==3.1.1
|
|||||||
oslo.upgradecheck==2.1.1
|
oslo.upgradecheck==2.1.1
|
||||||
oslo.utils==6.1.0
|
oslo.utils==6.1.0
|
||||||
oslo.versionedobjects==3.1.0
|
oslo.versionedobjects==3.1.0
|
||||||
packaging==23.2
|
packaging==24.1
|
||||||
Paste==3.7.1
|
Paste==3.10.1
|
||||||
PasteDeploy==3.1.0
|
PasteDeploy==3.1.0
|
||||||
PasteScript==3.4.0
|
PasteScript==3.6.0
|
||||||
pbr==6.0.0
|
pbr==6.1.0
|
||||||
pecan==1.5.1
|
pecan==1.5.1
|
||||||
pip==23.2.1
|
pip==24.1
|
||||||
pkgutil_resolve_name==1.3.10
|
|
||||||
ply==3.11
|
ply==3.11
|
||||||
prettytable==3.10.0
|
prettytable==3.11.0
|
||||||
prometheus_client==0.20.0
|
prometheus_client==0.20.0
|
||||||
psycopg2-binary==2.9.9
|
psycopg2-binary==2.9.9
|
||||||
pyasn1==0.5.1
|
pyasn1==0.6.1
|
||||||
pyasn1-modules==0.3.0
|
pyasn1_modules==0.4.0
|
||||||
pycadf==3.1.1
|
pycadf==3.1.1
|
||||||
pycparser==2.21
|
pycparser==2.22
|
||||||
pylibyaml==0.1.0
|
pylibyaml==0.1.0
|
||||||
pyOpenSSL==24.0.0
|
pyOpenSSL==24.2.1
|
||||||
pyparsing==3.1.1
|
pyparsing==3.1.4
|
||||||
pyperclip==1.8.2
|
pyperclip==1.9.0
|
||||||
python-barbicanclient==5.5.0
|
python-barbicanclient==5.5.0
|
||||||
python-dateutil==2.8.2
|
python-dateutil==2.9.0.post0
|
||||||
python-keystoneclient==5.1.0
|
python-keystoneclient==5.1.0
|
||||||
python-memcached==1.62
|
python-memcached==1.62
|
||||||
python-mimeparse==1.6.0
|
python-mimeparse==2.0.0
|
||||||
pytz==2024.1
|
pytz==2024.2
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
referencing==0.33.0
|
referencing==0.35.1
|
||||||
repoze.lru==0.7
|
repoze.lru==0.7
|
||||||
requests==2.31.0
|
requests==2.32.3
|
||||||
requests-oauthlib==1.3.1
|
requests-oauthlib==1.3.1
|
||||||
resolver==0.2.1
|
resolver==0.2.1
|
||||||
rfc3986==1.5.0
|
rfc3986==2.0.0
|
||||||
Routes==2.5.1
|
Routes==2.5.1
|
||||||
rpds-py==0.18.0
|
rpds-py==0.20.0
|
||||||
rsa==4.9
|
rsa==4.9
|
||||||
selector==0.10.1
|
selector==0.10.1
|
||||||
setuptools==68.2.2
|
setuptools==70.1.0
|
||||||
simplejson==3.19.2
|
simplejson==3.19.3
|
||||||
six==1.16.0
|
six==1.16.0
|
||||||
SQLAlchemy==1.4.51
|
SQLAlchemy==1.4.54
|
||||||
sqlalchemy-migrate==0.13.0
|
sqlalchemy-migrate==0.13.0
|
||||||
sqlparse==0.4.4
|
sqlparse==0.5.1
|
||||||
statsd==4.0.1
|
statsd==4.0.1
|
||||||
stevedore==5.2.0
|
stevedore==5.3.0
|
||||||
Tempita==0.5.2
|
Tempita==0.5.2
|
||||||
testresources==2.0.1
|
testresources==2.0.1
|
||||||
testscenarios==0.5.0
|
testscenarios==0.5.0
|
||||||
testtools==2.7.1
|
testtools==2.7.2
|
||||||
tiddlyweb==2.4.3
|
tiddlyweb==2.4.3
|
||||||
typing_extensions==4.9.0
|
typing_extensions==4.12.2
|
||||||
tzdata==2024.1
|
urllib3==2.2.2
|
||||||
urllib3==1.26.18
|
uWSGI==2.0.27
|
||||||
uWSGI==2.0.24
|
|
||||||
vine==5.1.0
|
vine==5.1.0
|
||||||
wcwidth==0.2.13
|
wcwidth==0.2.13
|
||||||
WebOb==1.8.7
|
WebOb==1.8.8
|
||||||
websocket-client==1.7.0
|
websocket-client==1.8.0
|
||||||
Werkzeug==2.2.3
|
Werkzeug==2.2.3
|
||||||
wheel==0.41.2
|
wheel==0.43.0
|
||||||
wrapt==1.16.0
|
wrapt==1.16.0
|
||||||
xattr==0.10.1
|
xattr==0.10.1
|
||||||
yappi==1.6.0
|
yappi==1.6.0
|
||||||
zipp==3.17.0
|
|
||||||
|
8
tox.ini
8
tox.ini
@ -1,5 +1,5 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = pep8,py38,docs
|
envlist = pep8,py310,docs
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
basepython=python3
|
basepython=python3
|
||||||
@ -27,10 +27,10 @@ commands =
|
|||||||
[testenv:venv]
|
[testenv:venv]
|
||||||
commands = {posargs}
|
commands = {posargs}
|
||||||
|
|
||||||
[testenv:py38]
|
[testenv:py310]
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
pytest
|
pytest
|
||||||
basepython=python3.8
|
basepython=python3.10
|
||||||
commands =
|
commands =
|
||||||
pytest {posargs}
|
pytest {posargs}
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ allowlist_externals=
|
|||||||
sh
|
sh
|
||||||
deps=
|
deps=
|
||||||
-r{toxinidir}/requirements-direct.txt
|
-r{toxinidir}/requirements-direct.txt
|
||||||
-c https://raw.githubusercontent.com/apache/airflow/constraints-2.8.2/constraints-3.8.txt
|
-c https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.10.txt
|
||||||
commands=
|
commands=
|
||||||
rm -f requirements-frozen.txt
|
rm -f requirements-frozen.txt
|
||||||
sh -c "pip freeze --all | grep -vE 'promenade|pyinotify|pkg-resources' > requirements-frozen.txt"
|
sh -c "pip freeze --all | grep -vE 'promenade|pyinotify|pkg-resources' > requirements-frozen.txt"
|
||||||
|
@ -14,30 +14,30 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-openstack-tox-docs-focal
|
name: airship-promenade-openstack-tox-docs-jammy
|
||||||
parent: openstack-tox-docs
|
parent: openstack-tox-docs
|
||||||
description: Runs docs job on focal
|
description: Runs docs job on jammy
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-openstack-tox-cover-focal
|
name: airship-promenade-openstack-tox-cover-jammy
|
||||||
parent: openstack-tox-cover
|
parent: openstack-tox-cover
|
||||||
description: Runs cover job on focal
|
description: Runs cover job on jammy
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
pre-run: tools/zuul/playbooks/install-deps.yaml
|
pre-run: tools/zuul/playbooks/install-deps.yaml
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-openstack-tox-py38-focal
|
name: airship-promenade-openstack-tox-py310-jammy
|
||||||
parent: openstack-tox-py38
|
parent: openstack-tox-py310
|
||||||
description: Runs cover job on focal
|
description: Runs cover job on jammy
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
pre-run: tools/zuul/playbooks/install-deps.yaml
|
pre-run: tools/zuul/playbooks/install-deps.yaml
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-openstack-tox-pep8-focal
|
name: airship-promenade-openstack-tox-pep8-jammy
|
||||||
parent: openstack-tox-pep8
|
parent: openstack-tox-pep8
|
||||||
description: Runs pep8 job on focal
|
description: Runs pep8 job on jammy
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-genesis-containerd-gate
|
name: airship-promenade-genesis-containerd-gate
|
||||||
@ -48,9 +48,9 @@
|
|||||||
required-projects:
|
required-projects:
|
||||||
- openstack/openstack-helm-infra
|
- openstack/openstack-helm-infra
|
||||||
timeout: 9600
|
timeout: 9600
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
vars:
|
vars:
|
||||||
distro: ubuntu_focal
|
distro: ubuntu_jammy
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-chart-build-gate
|
name: airship-promenade-chart-build-gate
|
||||||
@ -58,9 +58,9 @@
|
|||||||
Lints charts using pinned HTK
|
Lints charts using pinned HTK
|
||||||
run: tools/zuul/playbooks/helm-linter.yaml
|
run: tools/zuul/playbooks/helm-linter.yaml
|
||||||
timeout: 900
|
timeout: 900
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
vars:
|
vars:
|
||||||
HTK_COMMIT: 51c70e48dff173281a77d374d87af2c49caa6348
|
HTK_COMMIT: 43fd7143481b6ddda0dbd2f26bf6ec39a417b15b
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-chart-build-gate-latest-htk
|
name: airship-promenade-chart-build-gate-latest-htk
|
||||||
@ -68,7 +68,7 @@
|
|||||||
Lints charts using latest HTK
|
Lints charts using latest HTK
|
||||||
run: tools/zuul/playbooks/helm-linter.yaml
|
run: tools/zuul/playbooks/helm-linter.yaml
|
||||||
timeout: 900
|
timeout: 900
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
vars:
|
vars:
|
||||||
HTK_COMMIT: master
|
HTK_COMMIT: master
|
||||||
|
|
||||||
@ -79,19 +79,19 @@
|
|||||||
voting: true
|
voting: true
|
||||||
run: tools/zuul/playbooks/helm-linter.yaml
|
run: tools/zuul/playbooks/helm-linter.yaml
|
||||||
timeout: 900
|
timeout: 900
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
vars:
|
vars:
|
||||||
HTK_COMMIT: master
|
HTK_COMMIT: master
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-docker-build-gate-ubuntu_focal
|
name: airship-promenade-docker-build-gate-ubuntu_jammy
|
||||||
voting: true
|
voting: true
|
||||||
run: tools/zuul/playbooks/docker-image-build.yaml
|
run: tools/zuul/playbooks/docker-image-build.yaml
|
||||||
timeout: 3600
|
timeout: 3600
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
vars:
|
vars:
|
||||||
publish: false
|
publish: false
|
||||||
distro: ubuntu_focal
|
distro: ubuntu_jammy
|
||||||
tags:
|
tags:
|
||||||
dynamic:
|
dynamic:
|
||||||
patch_set: true
|
patch_set: true
|
||||||
@ -102,23 +102,23 @@
|
|||||||
- ^tools/.*$
|
- ^tools/.*$
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: airship-promenade-docker-publish_ubuntu_focal
|
name: airship-promenade-docker-publish_ubuntu_jammy
|
||||||
voting: false
|
voting: false
|
||||||
run: tools/zuul/playbooks/docker-image-build.yaml
|
run: tools/zuul/playbooks/docker-image-build.yaml
|
||||||
timeout: 3600
|
timeout: 3600
|
||||||
nodeset: airship-promenade-single-node-focal
|
nodeset: airship-promenade-single-node-jammy
|
||||||
secrets:
|
secrets:
|
||||||
- airship_promenade_quay_creds
|
- airship_promenade_quay_creds
|
||||||
vars:
|
vars:
|
||||||
publish: true
|
publish: true
|
||||||
distro: ubuntu_focal
|
distro: ubuntu_jammy
|
||||||
tags:
|
tags:
|
||||||
dynamic:
|
dynamic:
|
||||||
branch: true
|
branch: true
|
||||||
commit: true
|
commit: true
|
||||||
static:
|
static:
|
||||||
- latest
|
- latest
|
||||||
- airflow_2.8.2
|
- airflow_2.10.2
|
||||||
irrelevant-files:
|
irrelevant-files:
|
||||||
- ^charts/.*$
|
- ^charts/.*$
|
||||||
- ^etc/.*$
|
- ^etc/.*$
|
||||||
|
@ -12,17 +12,12 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
- nodeset:
|
- nodeset:
|
||||||
name: airship-promenade-single-node-focal
|
name: airship-promenade-single-node-jammy
|
||||||
nodes:
|
nodes:
|
||||||
- name: primary
|
- name: primary
|
||||||
label: ubuntu-focal
|
label: ubuntu-jammy
|
||||||
groups:
|
groups:
|
||||||
- name: primary
|
- name: primary
|
||||||
nodes:
|
nodes:
|
||||||
- primary
|
- primary
|
||||||
|
|
||||||
- nodeset:
|
|
||||||
name: airship-promenade-single-node-bionic
|
|
||||||
nodes:
|
|
||||||
- name: primary
|
|
||||||
label: ubuntu-bionic
|
|
@ -22,29 +22,29 @@
|
|||||||
rtd_project_name: 'airship-promenade'
|
rtd_project_name: 'airship-promenade'
|
||||||
check:
|
check:
|
||||||
jobs:
|
jobs:
|
||||||
- airship-promenade-openstack-tox-cover-focal
|
- airship-promenade-openstack-tox-cover-jammy
|
||||||
- airship-promenade-openstack-tox-pep8-focal
|
- airship-promenade-openstack-tox-pep8-jammy
|
||||||
- airship-promenade-openstack-tox-py38-focal
|
- airship-promenade-openstack-tox-py310-jammy
|
||||||
- airship-promenade-openstack-tox-docs-focal
|
- airship-promenade-openstack-tox-docs-jammy
|
||||||
- airship-promenade-docker-build-gate-ubuntu_focal
|
- airship-promenade-docker-build-gate-ubuntu_jammy
|
||||||
- airship-promenade-chart-build-gate
|
- airship-promenade-chart-build-gate
|
||||||
- airship-promenade-chart-build-latest-htk
|
- airship-promenade-chart-build-latest-htk
|
||||||
- airship-promenade-genesis-containerd-gate
|
- airship-promenade-genesis-containerd-gate
|
||||||
|
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- airship-promenade-openstack-tox-cover-focal
|
- airship-promenade-openstack-tox-cover-jammy
|
||||||
- airship-promenade-openstack-tox-pep8-focal
|
- airship-promenade-openstack-tox-pep8-jammy
|
||||||
- airship-promenade-openstack-tox-py38-focal
|
- airship-promenade-openstack-tox-py310-jammy
|
||||||
- airship-promenade-openstack-tox-docs-focal
|
- airship-promenade-openstack-tox-docs-jammy
|
||||||
- airship-promenade-docker-build-gate-ubuntu_focal
|
- airship-promenade-docker-build-gate-ubuntu_jammy
|
||||||
- airship-promenade-chart-build-gate
|
- airship-promenade-chart-build-gate
|
||||||
- airship-promenade-chart-build-latest-htk
|
- airship-promenade-chart-build-latest-htk
|
||||||
- airship-promenade-genesis-containerd-gate
|
- airship-promenade-genesis-containerd-gate
|
||||||
#- trigger-readthedocs-webhook
|
#- trigger-readthedocs-webhook
|
||||||
post:
|
post:
|
||||||
jobs:
|
jobs:
|
||||||
- airship-promenade-docker-publish_ubuntu_focal
|
- airship-promenade-docker-publish_ubuntu_jammy
|
||||||
- promenade-upload-git-mirror
|
- promenade-upload-git-mirror
|
||||||
#- trigger-readthedocs-webhook
|
#- trigger-readthedocs-webhook
|
||||||
pre-release:
|
pre-release:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user