You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API for running [Flyway migrations](https://www.red-gate.com/products/flyway/community/).
4
+
See [github](https://github.com/davidkarlsen/flyway-operator) and [usage-instructions](https://github.com/davidkarlsen/flyway-operator/blob/main/USING.md)
description: Migration is the Schema for the migrations API
21
21
properties:
22
22
apiVersion:
23
-
description: 'APIVersion defines the versioned schema of this representation
24
-
of an object. Servers should convert recognized schemas to the latest
25
-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
23
+
description: |-
24
+
APIVersion defines the versioned schema of this representation of an object.
25
+
Servers should convert recognized schemas to the latest internal value, and
26
+
may reject unrecognized values.
27
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
26
28
type: string
27
29
kind:
28
-
description: 'Kind is a string value representing the REST resource this
29
-
object represents. Servers may infer this from the endpoint the client
30
-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30
+
description: |-
31
+
Kind is a string value representing the REST resource this object represents.
32
+
Servers may infer this from the endpoint the client submits requests to.
33
+
Cannot be updated.
34
+
In CamelCase.
35
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
31
36
type: string
32
37
metadata:
33
38
type: object
@@ -46,8 +51,13 @@ spec:
46
51
a valid secret key.
47
52
type: string
48
53
name:
49
-
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
50
-
TODO: Add other useful fields. apiVersion, kind, uid?'
54
+
default: ""
55
+
description: |-
56
+
Name of the referent.
57
+
This field is effectively required, but due to backwards compatibility is
58
+
allowed to be empty. Instances of this type with an empty value here are
59
+
almost certainly wrong.
60
+
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
51
61
type: string
52
62
optional:
53
63
description: Specify whether the Secret or its key must be
@@ -73,20 +83,25 @@ spec:
73
83
description: settings for flyway
74
84
properties:
75
85
baselineOnMigrate:
76
-
description: Base-line on migrate. See https://documentation.red-gate.com/fd/baseline-on-migrate-224919695.html
86
+
description: |-
87
+
Base-line on migrate.
88
+
See https://documentation.red-gate.com/fd/baseline-on-migrate-224919695.html
77
89
type: boolean
78
90
commands:
79
91
default:
80
92
- info
81
93
- migrate
82
94
- info
83
-
description: The flyway actions to apply, like "info", "migrate"
95
+
description: |-
96
+
The flyway actions to apply, like "info", "migrate"
84
97
See https://documentation.red-gate.com/fd/commands-184127446.html
85
98
items:
86
99
type: string
87
100
type: array
88
101
defaultSchema:
89
-
description: The default flyway schema to use. See https://documentation.red-gate.com/fd/default-schema-184127496.html
102
+
description: |-
103
+
The default flyway schema to use.
104
+
See https://documentation.red-gate.com/fd/default-schema-184127496.html
90
105
type: string
91
106
envVars:
92
107
description: Arbitrary entries to set as env-vars to Flyway migration
@@ -100,15 +115,16 @@ spec:
100
115
C_IDENTIFIER.
101
116
type: string
102
117
value:
103
-
description: 'Variable references $(VAR_NAME) are expanded
104
-
using the previously defined environment variables in
105
-
the container and any service environment variables. If
106
-
a variable cannot be resolved, the reference in the input
107
-
string will be unchanged. Double $$ are reduced to a single
108
-
$, which allows for escaping the $(VAR_NAME) syntax: i.e.
118
+
description: |-
119
+
Variable references $(VAR_NAME) are expanded
120
+
using the previously defined environment variables in the container and
121
+
any service environment variables. If a variable cannot be resolved,
122
+
the reference in the input string will be unchanged. Double $$ are reduced
123
+
to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.
109
124
"$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)".
110
-
Escaped references will never be expanded, regardless
111
-
of whether the variable exists or not. Defaults to "".'
125
+
Escaped references will never be expanded, regardless of whether the variable
126
+
exists or not.
127
+
Defaults to "".
112
128
type: string
113
129
valueFrom:
114
130
description: Source for the environment variable's value.
@@ -121,9 +137,13 @@ spec:
121
137
description: The key to select.
122
138
type: string
123
139
name:
124
-
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
125
-
TODO: Add other useful fields. apiVersion, kind,
126
-
uid?'
140
+
default: ""
141
+
description: |-
142
+
Name of the referent.
143
+
This field is effectively required, but due to backwards compatibility is
144
+
allowed to be empty. Instances of this type with an empty value here are
145
+
almost certainly wrong.
146
+
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
127
147
type: string
128
148
optional:
129
149
description: Specify whether the ConfigMap or its
@@ -134,11 +154,9 @@ spec:
134
154
type: object
135
155
x-kubernetes-map-type: atomic
136
156
fieldRef:
137
-
description: 'Selects a field of the pod: supports metadata.name,
0 commit comments