Skip to content

Commit

Permalink
Bump stardog-userrole-operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Saratura committed May 8, 2024
1 parent f85e33e commit bee7efa
Show file tree
Hide file tree
Showing 15 changed files with 494 additions and 843 deletions.
4 changes: 2 additions & 2 deletions appuio/stardog-userrole-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: stardog-userrole-operator
version: 0.2.3
appVersion: 0.2.3
version: 0.3.0
appVersion: 0.3.0
description: Stardog User and Role Operator
sources:
- https://github.com/vshn/stardog-userrole-operator
Expand Down
199 changes: 105 additions & 94 deletions appuio/stardog-userrole-operator/crd/databases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.9.0
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.14.0
name: databases.stardog.vshn.ch
spec:
group: stardog.vshn.ch
Expand All @@ -15,95 +14,107 @@ spec:
singular: database
scope: Cluster
versions:
- name: v1beta1
schema:
openAPIV3Schema:
description: Database is the Schema for the databases 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'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: DatabaseSpec defines the desired state of the Database
properties:
databaseName:
description: DatabaseName the database name that has to be created
in the Stardog server
type: string
namedGraphPrefix:
description: NamedGraphPrefix a prefix for a Stardog Named Graph.
type: string
options:
description: Options is the Stardog configuration options for this
database. Only json input is valid.
type: string
stardogInstanceRefs:
description: StardogInstanceRefs contains the reference to the Stardog
instance the database should exist in
items:
description: StardogInstanceRef contains name and namespace for
a stardog instance
properties:
name:
type: string
namespace:
type: string
type: object
type: array
type: object
status:
description: DatabaseStatus defines the observed state of the Database
properties:
conditions:
items:
description: StardogCondition describes a status condition of a
StardogRole
properties:
lastTransitionTime:
format: date-time
type: string
message:
type: string
reason:
type: string
status:
type: string
type:
type: string
required:
- status
- type
type: object
type: array
databaseName:
type: string
namedGraphPrefix:
type: string
options:
type: string
stardogInstanceRef:
items:
description: StardogInstanceRef contains name and namespace for
a stardog instance
properties:
name:
type: string
namespace:
type: string
type: object
type: array
type: object
type: object
served: true
storage: true
subresources:
status: {}
- name: v1beta1
schema:
openAPIV3Schema:
description: Database is the Schema for the databases 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
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: DatabaseSpec defines the desired state of the Database
properties:
addUserForNonHiddenGraphs:
description: |-
AddUserForNonHiddenGraphs a dynamically managed user of this db with custom permissions
Mainly used to not have access to hidden graphs
type: string
databaseName:
description: DatabaseName the database name that has to be created
in the Stardog server
type: string
namedGraphPrefix:
description: NamedGraphPrefix a prefix for a Stardog Named Graph.
type: string
options:
description: Options is the Stardog configuration options for this
database. Only json input is valid.
type: string
stardogInstanceRefs:
description: StardogInstanceRefs contains the reference to the Stardog
instance the database should exist in
items:
description: StardogInstanceRef contains name and namespace for
a stardog instance
properties:
name:
type: string
namespace:
type: string
type: object
type: array
type: object
status:
description: DatabaseStatus defines the observed state of the Database
properties:
addUserForNonHiddenGraphs:
type: string
conditions:
items:
description: StardogCondition describes a status condition of a
StardogRole
properties:
lastTransitionTime:
format: date-time
type: string
message:
type: string
reason:
type: string
status:
type: string
type:
type: string
required:
- status
- type
type: object
type: array
databaseName:
type: string
namedGraphPrefix:
type: string
options:
type: string
stardogInstanceRef:
items:
description: StardogInstanceRef contains name and namespace for
a stardog instance
properties:
name:
type: string
namespace:
type: string
type: object
type: array
type: object
type: object
served: true
storage: true
subresources:
status: {}
Loading

0 comments on commit bee7efa

Please sign in to comment.