-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from epsagon/release-operation-0.1
preparing for v0.1 release
- Loading branch information
Showing
4 changed files
with
418 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.3.0 | ||
creationTimestamp: null | ||
name: epsagons.integration.epsagon.com | ||
spec: | ||
group: integration.epsagon.com | ||
names: | ||
kind: Epsagon | ||
listKind: EpsagonList | ||
plural: epsagons | ||
singular: epsagon | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: Epsagon is the Schema for the epsagons 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: EpsagonSpec defines the desired state of Epsagon | ||
properties: | ||
clusterEndpoint: | ||
description: ClusterEndpoint cluster api endpoint to access from outside | ||
of the cluster | ||
type: string | ||
epsagonToken: | ||
description: EpsagonToken is the Epsagon token for the account integrating | ||
this cluster | ||
type: string | ||
required: | ||
- clusterEndpoint | ||
- epsagonToken | ||
type: object | ||
status: | ||
description: EpsagonStatus defines the observed state of Epsagon | ||
properties: | ||
lastUpdate: | ||
description: LastUpdate the last update time of this resource | ||
format: date-time | ||
type: string | ||
reason: | ||
description: Reason description of the error, if any. | ||
type: string | ||
status: | ||
description: Status of the integration with Epsagon | ||
type: string | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.