Skip to content

Commit

Permalink
Bump app and chart-deps (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkarlsen committed Nov 19, 2023
1 parent 71e1f1d commit 275e9f9
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 9 deletions.
6 changes: 3 additions & 3 deletions config/helm-chart/flyway-operator/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.11.1
digest: sha256:ead8f26c76a9ec082f23629a358e8efd8f88d87aaed734bf41febcb8a7bc5d4c
generated: "2023-09-17T21:09:19.356982+02:00"
version: 2.13.3
digest: sha256:9a971689db0c66ea95ac2e911c05014c2b96c6077c991131ff84f2982f88fb83
generated: "2023-11-19T02:11:35.940177+01:00"
4 changes: 2 additions & 2 deletions config/helm-chart/flyway-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: flyway-operator
description: Flyway Operator - an operator to do declarative database schema migration.
type: application
icon: https://pbs.twimg.com/profile_images/1339525060999192576/9ltj0fpE_400x400.png
version: 0.1.1
appVersion: 0.1.6
version: 0.2.0
appVersion: 0.2.2
maintainers:
- name: davidkarlsen
email: david@davidkarlsen.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,146 @@ spec:
- jdbcUrl
- username
type: object
flywayConfiguration:
description: settings for flyway
properties:
baselineOnMigrate:
description: Base-line on migrate. See https://documentation.red-gate.com/fd/baseline-on-migrate-224919695.html
type: boolean
commands:
default:
- info
- migrate
- info
description: The flyway actions to apply, like "info", "migrate"
See https://documentation.red-gate.com/fd/commands-184127446.html
items:
type: string
type: array
defaultSchema:
description: The default flyway schema to use. See https://documentation.red-gate.com/fd/default-schema-184127496.html
type: string
envVars:
description: Arbitrary entries to set as env-vars to Flyway migration
job.
items:
description: EnvVar represents an environment variable present
in a Container.
properties:
name:
description: Name of the environment variable. Must be a
C_IDENTIFIER.
type: string
value:
description: 'Variable references $(VAR_NAME) are expanded
using the previously defined environment variables in
the container and any service environment variables. If
a variable cannot be resolved, the reference in the input
string will be unchanged. Double $$ are reduced to a single
$, which allows for escaping the $(VAR_NAME) syntax: i.e.
"$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)".
Escaped references will never be expanded, regardless
of whether the variable exists or not. Defaults to "".'
type: string
valueFrom:
description: Source for the environment variable's value.
Cannot be used if value is not empty.
properties:
configMapKeyRef:
description: Selects a key of a ConfigMap.
properties:
key:
description: The key to select.
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind,
uid?'
type: string
optional:
description: Specify whether the ConfigMap or its
key must be defined
type: boolean
required:
- key
type: object
x-kubernetes-map-type: atomic
fieldRef:
description: 'Selects a field of the pod: supports metadata.name,
metadata.namespace, `metadata.labels[''<KEY>'']`,
`metadata.annotations[''<KEY>'']`, spec.nodeName,
spec.serviceAccountName, status.hostIP, status.podIP,
status.podIPs.'
properties:
apiVersion:
description: Version of the schema the FieldPath
is written in terms of, defaults to "v1".
type: string
fieldPath:
description: Path of the field to select in the
specified API version.
type: string
required:
- fieldPath
type: object
x-kubernetes-map-type: atomic
resourceFieldRef:
description: 'Selects a resource of the container: only
resources limits and requests (limits.cpu, limits.memory,
limits.ephemeral-storage, requests.cpu, requests.memory
and requests.ephemeral-storage) are currently supported.'
properties:
containerName:
description: 'Container name: required for volumes,
optional for env vars'
type: string
divisor:
anyOf:
- type: integer
- type: string
description: Specifies the output format of the
exposed resources, defaults to "1"
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
resource:
description: 'Required: resource to select'
type: string
required:
- resource
type: object
x-kubernetes-map-type: atomic
secretKeyRef:
description: Selects a key of a secret in the pod's
namespace
properties:
key:
description: The key of the secret to select from. Must
be a valid secret key.
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind,
uid?'
type: string
optional:
description: Specify whether the Secret or its key
must be defined
type: boolean
required:
- key
type: object
x-kubernetes-map-type: atomic
type: object
required:
- name
type: object
type: array
flywayImage:
description: Reference to the flyway image to use.
type: string
required:
- commands
type: object
migrationSource:
description: settings defining the SQL migrations
properties:
Expand All @@ -90,9 +230,6 @@ spec:
default: UTF-8
description: The encoding of the SQL-files.
type: string
flywayImage:
description: Reference to the flyway image to use.
type: string
imageRef:
description: Reference to the image holding the SQLs to migrate
type: string
Expand All @@ -113,6 +250,7 @@ spec:
type: object
required:
- database
- flywayConfiguration
- migrationSource
type: object
status:
Expand Down
2 changes: 1 addition & 1 deletion config/helm-chart/flyway-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
registry: ghcr.io
repository: davidkarlsen/flyway-operator
pullPolicy: IfNotPresent
tag: 0.1.6
tag: 0.2.2

imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit 275e9f9

Please sign in to comment.