Skip to content

Commit

Permalink
Merge pull request #504 from appuio/user-role-operator/bump-version
Browse files Browse the repository at this point in the history
Bump stardog-userrole-operator
  • Loading branch information
zugao authored May 8, 2024
2 parents f85e33e + 6632205 commit 70f4d42
Show file tree
Hide file tree
Showing 10 changed files with 499 additions and 452 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ helm repo add appuio https://charts.appuio.ch
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/signalilo-0.12.1/total)](https://github.com/appuio/charts/releases/tag/signalilo-0.12.1) | [signalilo](appuio/signalilo/README.md) |
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/snappass-1.0.0/total)](https://github.com/appuio/charts/releases/tag/snappass-1.0.0) | [snappass](appuio/snappass/README.md) |
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/stardog-0.25.0/total)](https://github.com/appuio/charts/releases/tag/stardog-0.25.0) | [stardog](appuio/stardog/README.md) |
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/stardog-userrole-operator-0.2.3/total)](https://github.com/appuio/charts/releases/tag/stardog-userrole-operator-0.2.3) | [stardog-userrole-operator](appuio/stardog-userrole-operator/README.md) |
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/stardog-userrole-operator-0.3.0/total)](https://github.com/appuio/charts/releases/tag/stardog-userrole-operator-0.3.0) | [stardog-userrole-operator](appuio/stardog-userrole-operator/README.md) |
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/trifid-2.0.2/total)](https://github.com/appuio/charts/releases/tag/trifid-2.0.2) | [trifid](appuio/trifid/README.md) |

## Add / Update Charts
Expand Down
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
4 changes: 2 additions & 2 deletions appuio/stardog-userrole-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# stardog-userrole-operator

![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![AppVersion: 0.2.3](https://img.shields.io/badge/AppVersion-0.2.3-informational?style=flat-square)
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![AppVersion: 0.3.0](https://img.shields.io/badge/AppVersion-0.3.0-informational?style=flat-square)

Stardog User and Role Operator

Expand All @@ -27,7 +27,7 @@ Edit the README.gotmpl.md template instead.
| image.pullPolicy | string | `"Always"` | |
| image.registry | string | `"ghcr.io"` | |
| image.repository | string | `"vshn/stardog-userrole-operator"` | |
| image.tag | string | `"v0.2.3"` | |
| image.tag | string | `"v0.3.0"` | |
| imagePullSecrets | list | `[]` | |
| leaderElection.enabled | bool | `false` | Enable leader election for multiple replicas |
| metrics.proxy.enabled | bool | `false` | Enable metrics via service behind a authenticated proxy |
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 70f4d42

Please sign in to comment.