Schema updates

This PS fixes the schema validation by adding
specific schema draft to choose in order to
prevent the processor to fall back to use the
latest draft that may potentially cause issues.

Change-Id: Ic5398f8b1458f435a0dc7bbacbb4859bd933c212
This commit is contained in:
Sergiy Markin 2024-12-23 05:00:17 +00:00
parent e491bc4ca7
commit 40fd108fd9
13 changed files with 20 additions and 20 deletions

View File

@ -18,7 +18,7 @@
# 429 Too Many Requests - Server message: too many requests: # 429 Too Many Requests - Server message: too many requests:
# You have reached your pull rate limit. # You have reached your pull rate limit.
# You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit # You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
ARG FROM=public.ecr.aws/docker/library/ubuntu:jammy ARG FROM=quay.io/airshipit/ubuntu:jammy
FROM ${FROM} FROM ${FROM}
LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode' \ LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode' \

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: armada application: armada
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
metadata: metadata:
@ -15,7 +15,7 @@ metadata:
labels: labels:
application: armada application: armada
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
metadata: metadata:
@ -24,5 +24,5 @@ metadata:
labels: labels:
application: armada application: armada
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
... ...

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: deckhand application: deckhand
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: string type: string
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
@ -16,7 +16,7 @@ metadata:
labels: labels:
application: deckhand application: deckhand
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: string type: string
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
@ -26,7 +26,7 @@ metadata:
labels: labels:
application: deckhand application: deckhand
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: string type: string
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
@ -36,7 +36,7 @@ metadata:
labels: labels:
application: deckhand application: deckhand
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: string type: string
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
@ -46,7 +46,7 @@ metadata:
labels: labels:
application: deckhand application: deckhand
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: string type: string
--- ---
schema: deckhand/DataSchema/v1 schema: deckhand/DataSchema/v1
@ -56,6 +56,6 @@ metadata:
labels: labels:
application: deckhand application: deckhand
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: string type: string
... ...

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: object type: object
properties: properties:
config: config:

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
definitions: definitions:
script_encryption: script_encryption:

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
definitions: definitions:
abs_path: abs_path:
type: string type: string

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
definitions: definitions:
abs_path: abs_path:
type: string type: string

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
type: object type: object
definitions: definitions:
image: image:

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
definitions: definitions:
cidr: cidr:
type: string type: string

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
definitions: definitions:
hostname: hostname:
type: string type: string

View File

@ -6,7 +6,7 @@ metadata:
labels: labels:
application: promenade application: promenade
data: data:
$schema: http://json-schema.org/schema# $schema: http://json-schema.org/draft-04/schema#
certificate_authorities: certificate_authorities:
type: array type: array
items: items:

View File

@ -1,4 +1,4 @@
Deckhand @ git+https://opendev.org/airship/deckhand.git@4d500e48e880ea7f9a3582324c55c61373a855ea#egg=deckhand Deckhand @ git+https://opendev.org/airship/deckhand.git@211b2d20c080ec806d196f3ec6b0d0472b00fa1b#egg=deckhand
Beaker Beaker
click click
falcon falcon

View File

@ -15,7 +15,7 @@ cliff==4.8.0
cmd2==2.5.8 cmd2==2.5.8
cryptography==42.0.8 cryptography==42.0.8
debtcollector==3.0.0 debtcollector==3.0.0
Deckhand @ git+https://opendev.org/airship/deckhand.git@4d500e48e880ea7f9a3582324c55c61373a855ea Deckhand @ git+https://opendev.org/airship/deckhand.git@211b2d20c080ec806d196f3ec6b0d0472b00fa1b
decorator==5.1.1 decorator==5.1.1
deepdiff==8.1.1 deepdiff==8.1.1
dnspython==2.7.0 dnspython==2.7.0