Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update upstream specifications to their latest version #265

Merged
merged 2 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ Files: crd-catalog/bitspur/rock8s/integration-operator/*
Copyright: The bitspur/rock8s/integration-operator Authors
License: AGPL-3.0-or-later

Files: crd-catalog/bpfd-dev/bpfd/*
Copyright: The bpfd-dev/bpfd Authors
Files: crd-catalog/bpfman/bpfman/*
Copyright: The bpfman/bpfman Authors
License: Apache-2.0

Files: crd-catalog/carlosedp/lbconfig-operator/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
- name: "v1beta1"
schema:
openAPIV3Schema:
description: "PGAdmin is the Schema for the pgadmins API"
description: "PGAdmin is the Schema for the PGAdmin API"
properties:
apiVersion:
description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
Expand Down Expand Up @@ -630,6 +630,10 @@ spec:
type: "object"
type: "object"
type: "array"
gunicorn:
description: "Settings for the gunicorn server. More info: https://docs.gunicorn.org/en/latest/settings.html"
type: "object"
x-kubernetes-preserve-unknown-fields: true
ldapBindPassword:
description: "A Secret containing the value for the LDAP_BIND_PASSWORD setting. More info: https://www.pgadmin.org/docs/pgadmin4/latest/ldap.html"
properties:
Expand Down Expand Up @@ -874,14 +878,34 @@ spec:
type: "string"
type: "object"
type: "array"
users:
description: "pgAdmin users that are managed via the PGAdmin spec. Users can still be added via the pgAdmin GUI, but those users will not show up here."
items:
properties:
role:
description: "Role determines whether the user has admin privileges or not. Defaults to User. Valid options are Administrator and User."
enum:
- "Administrator"
- "User"
type: "string"
username:
description: "The username for User in pgAdmin. Must be unique in the pgAdmin's users list."
type: "string"
required:
- "username"
type: "object"
type: "array"
x-kubernetes-list-map-keys:
- "username"
x-kubernetes-list-type: "map"
required:
- "dataVolumeClaimSpec"
type: "object"
status:
description: "PGAdminStatus defines the observed state of PGAdmin"
properties:
conditions:
description: "conditions represent the observations of pgadmin's current state. Known .status.conditions.type are: \"PersistentVolumeResizing\", \"Progressing\", \"ProxyAvailable\""
description: "conditions represent the observations of pgAdmin's current state. Known .status.conditions.type is: \"PersistentVolumeResizing\""
items:
description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }"
properties:
Expand Down Expand Up @@ -927,6 +951,12 @@ spec:
x-kubernetes-list-map-keys:
- "type"
x-kubernetes-list-type: "map"
imageSHA:
description: "ImageSHA represents the image SHA for the container running pgAdmin."
type: "string"
majorVersion:
description: "MajorVersion represents the major version of the running pgAdmin."
type: "integer"
observedGeneration:
description: "observedGeneration represents the .metadata.generation on which the status was based."
format: "int64"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,23 @@ spec:
- "type"
type: "object"
type: "array"
probes:
items:
properties:
host:
type: "string"
id:
type: "string"
ipAddress:
type: "string"
synced:
type: "boolean"
required:
- "host"
- "id"
- "ipAddress"
type: "object"
type: "array"
type: "object"
observedGeneration:
description: "observedGeneration is the most recently observed generation of the DNSRecord. When the DNSRecord is updated, the controller updates the corresponding record in each managed zone. If an update for a particular zone fails, that failure is recorded in the status condition for the zone so that the controller can determine that it needs to retry the update for that specific zone."
Expand Down
Loading