|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + controller-gen.kubebuilder.io/version: v0.7.0 |
| 6 | + creationTimestamp: null |
| 7 | + name: autoscalinglisteners.actions.github.com |
| 8 | +spec: |
| 9 | + group: actions.github.com |
| 10 | + names: |
| 11 | + kind: AutoscalingListener |
| 12 | + listKind: AutoscalingListenerList |
| 13 | + plural: autoscalinglisteners |
| 14 | + singular: autoscalinglistener |
| 15 | + scope: Namespaced |
| 16 | + versions: |
| 17 | + - additionalPrinterColumns: |
| 18 | + - jsonPath: .spec.githubConfigUrl |
| 19 | + name: GitHub Configure URL |
| 20 | + type: string |
| 21 | + - jsonPath: .spec.autoscalingRunnerSetNamespace |
| 22 | + name: AutoscalingRunnerSet Namespace |
| 23 | + type: string |
| 24 | + - jsonPath: .spec.autoscalingRunnerSetName |
| 25 | + name: AutoscalingRunnerSet Name |
| 26 | + type: string |
| 27 | + name: v1alpha1 |
| 28 | + schema: |
| 29 | + openAPIV3Schema: |
| 30 | + description: AutoscalingListener is the Schema for the autoscalinglisteners API |
| 31 | + properties: |
| 32 | + apiVersion: |
| 33 | + 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' |
| 34 | + type: string |
| 35 | + kind: |
| 36 | + 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' |
| 37 | + type: string |
| 38 | + metadata: |
| 39 | + type: object |
| 40 | + spec: |
| 41 | + description: AutoscalingListenerSpec defines the desired state of AutoscalingListener |
| 42 | + properties: |
| 43 | + autoscalingRunnerSetName: |
| 44 | + description: Required |
| 45 | + type: string |
| 46 | + autoscalingRunnerSetNamespace: |
| 47 | + description: Required |
| 48 | + type: string |
| 49 | + ephemeralRunnerSetName: |
| 50 | + description: Required |
| 51 | + type: string |
| 52 | + githubConfigSecret: |
| 53 | + description: Required |
| 54 | + type: string |
| 55 | + githubConfigUrl: |
| 56 | + description: Required |
| 57 | + type: string |
| 58 | + image: |
| 59 | + description: Required |
| 60 | + type: string |
| 61 | + imagePullSecrets: |
| 62 | + description: Required |
| 63 | + items: |
| 64 | + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. |
| 65 | + properties: |
| 66 | + name: |
| 67 | + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' |
| 68 | + type: string |
| 69 | + type: object |
| 70 | + type: array |
| 71 | + maxRunners: |
| 72 | + description: Required |
| 73 | + minimum: 0 |
| 74 | + type: integer |
| 75 | + minRunners: |
| 76 | + description: Required |
| 77 | + minimum: 0 |
| 78 | + type: integer |
| 79 | + runnerScaleSetId: |
| 80 | + description: Required |
| 81 | + type: integer |
| 82 | + type: object |
| 83 | + status: |
| 84 | + description: AutoscalingListenerStatus defines the observed state of AutoscalingListener |
| 85 | + type: object |
| 86 | + type: object |
| 87 | + served: true |
| 88 | + storage: true |
| 89 | + subresources: |
| 90 | + status: {} |
| 91 | + preserveUnknownFields: false |
| 92 | +status: |
| 93 | + acceptedNames: |
| 94 | + kind: "" |
| 95 | + plural: "" |
| 96 | + conditions: [] |
| 97 | + storedVersions: [] |
0 commit comments