-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
1,317 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: ctlogs.rhtas.redhat.com | ||
spec: | ||
group: rhtas.redhat.com | ||
names: | ||
kind: CTlog | ||
listKind: CTlogList | ||
plural: ctlogs | ||
singular: ctlog | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: The component phase | ||
jsonPath: .status.phase | ||
name: Phase | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: CTlog is the Schema for the ctlogs 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: CTlogSpec defines the desired state of CTlog component | ||
type: object | ||
status: | ||
description: CTlogStatus defines the observed state of CTlog component | ||
properties: | ||
phase: | ||
type: string | ||
required: | ||
- phase | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: fulcios.rhtas.redhat.com | ||
spec: | ||
group: rhtas.redhat.com | ||
names: | ||
kind: Fulcio | ||
listKind: FulcioList | ||
plural: fulcios | ||
singular: fulcio | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: The component phase | ||
jsonPath: .status.phase | ||
name: Phase | ||
type: string | ||
- description: The component url | ||
jsonPath: .status.url | ||
name: URL | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Fulcio is the Schema for the fulcios 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: FulcioSpec defines the desired state of Fulcio | ||
properties: | ||
external: | ||
description: Define whether you want to export service or not | ||
type: boolean | ||
fulcioCert: | ||
description: Certificate configuration if you want to generate one | ||
properties: | ||
certPassword: | ||
type: string | ||
create: | ||
type: boolean | ||
organizationEmail: | ||
type: string | ||
organizationName: | ||
type: string | ||
required: | ||
- create | ||
type: object | ||
keySecret: | ||
description: Enter secret name with your keys and certificate | ||
type: string | ||
oidcIssuers: | ||
additionalProperties: | ||
properties: | ||
ClientID: | ||
type: string | ||
IssuerURL: | ||
type: string | ||
Type: | ||
type: string | ||
required: | ||
- ClientID | ||
- IssuerURL | ||
- Type | ||
type: object | ||
description: OIDC issuer configuration | ||
type: object | ||
required: | ||
- oidcIssuers | ||
type: object | ||
status: | ||
description: FulcioStatus defines the observed state of Fulcio | ||
properties: | ||
phase: | ||
type: string | ||
url: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: rekors.rhtas.redhat.com | ||
spec: | ||
group: rhtas.redhat.com | ||
names: | ||
kind: Rekor | ||
listKind: RekorList | ||
plural: rekors | ||
singular: rekor | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: The component phase | ||
jsonPath: .status.phase | ||
name: Phase | ||
type: string | ||
- description: The component url | ||
jsonPath: .status.url | ||
name: URL | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Rekor is the Schema for the rekors 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: RekorSpec defines the desired state of Rekor | ||
properties: | ||
external: | ||
description: Define whether you want to export service or not | ||
type: boolean | ||
keySecret: | ||
description: Enter secret name with your keys and certificate | ||
type: string | ||
pvcName: | ||
description: Persistent volume claim name to bound with Rekor component | ||
type: string | ||
rekorCert: | ||
description: Certificate configuration if you want to generate one | ||
properties: | ||
create: | ||
type: boolean | ||
required: | ||
- create | ||
type: object | ||
type: object | ||
status: | ||
description: RekorStatus defines the observed state of Rekor | ||
properties: | ||
phase: | ||
type: string | ||
url: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.