Skip to content
This repository was archived by the owner on Sep 25, 2025. It is now read-only.

Commit 20612dd

Browse files
committed
Update passless CRD definition
1 parent 228a95f commit 20612dd

File tree

2 files changed

+43
-42
lines changed

2 files changed

+43
-42
lines changed

charts/passless-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.0
18+
version: 0.3.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
Lines changed: 42 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.7.0
46
name: passlesses.wavesoftware.pl
57
spec:
68
group: wavesoftware.pl
@@ -10,48 +12,47 @@ spec:
1012
plural: passlesses
1113
singular: passless
1214
scope: Namespaced
13-
subresources:
14-
status: {}
15-
validation:
16-
openAPIV3Schema:
17-
description: PassLess is the Schema for the passlesses API
18-
properties:
19-
apiVersion:
20-
description: 'APIVersion defines the versioned schema of this representation
21-
of an object. Servers should convert recognized schemas to the latest
22-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
23-
type: string
24-
kind:
25-
description: 'Kind is a string value representing the REST resource this
26-
object represents. Servers may infer this from the endpoint the client
27-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
28-
type: string
29-
metadata:
30-
type: object
31-
spec:
32-
additionalProperties:
33-
description: PassLessEntry contains a configuration for each secret value
34-
to be generated
35-
properties:
36-
length:
37-
description: Length defines a length of the passless secret.
38-
type: integer
39-
scope:
40-
description: Scope defines a type of the passless secret.
41-
type: string
42-
version:
43-
description: Version defines a incremental number of a passless secret.
44-
To change secret increment this number.
45-
type: integer
46-
type: object
47-
description: PassLessSpec defines the desired state of PassLess
48-
type: object
49-
status:
50-
description: PassLessStatus defines the observed state of PassLess
51-
type: string
52-
type: object
53-
version: v1alpha1
5415
versions:
5516
- name: v1alpha1
17+
schema:
18+
openAPIV3Schema:
19+
description: PassLess is the Schema for the passlesses API.
20+
properties:
21+
apiVersion:
22+
description: 'APIVersion defines the versioned schema of this representation
23+
of an object. Servers should convert recognized schemas to the latest
24+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
25+
type: string
26+
kind:
27+
description: 'Kind is a string value representing the REST resource this
28+
object represents. Servers may infer this from the endpoint the client
29+
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+
type: string
31+
metadata:
32+
type: object
33+
spec:
34+
additionalProperties:
35+
description: PassLessEntry contains a configuration for each secret
36+
value to be generated.
37+
properties:
38+
length:
39+
description: Length defines a length of the passless secret.
40+
type: integer
41+
scope:
42+
description: Scope defines a type of the passless secret.
43+
type: string
44+
version:
45+
description: Version defines an incremental number of a passless
46+
secret. To change secret increment this number.
47+
type: integer
48+
type: object
49+
description: PassLessSpec defines the desired state of PassLess.
50+
type: object
51+
status:
52+
description: PassLessStatus defines the observed state of PassLess.
53+
type: string
54+
type: object
5655
served: true
5756
storage: true
57+
subresources:
58+
status: {}

0 commit comments

Comments
 (0)