-
Notifications
You must be signed in to change notification settings - Fork 204
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
7 changed files
with
281 additions
and
10 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
105 changes: 105 additions & 0 deletions
105
...nsions.k8s.io_v1beta1_customresourcedefinition_rediscacheactions.azure.microsoft.com.yaml
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,105 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.5 | ||
creationTimestamp: null | ||
name: rediscacheactions.azure.microsoft.com | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.provisioned | ||
name: Provisioned | ||
type: string | ||
- JSONPath: .status.message | ||
name: Message | ||
type: string | ||
group: azure.microsoft.com | ||
names: | ||
kind: RedisCacheAction | ||
listKind: RedisCacheActionList | ||
plural: rediscacheactions | ||
singular: rediscacheaction | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: RedisCacheAction is the Schema for the rediscacheactions 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: RedisCacheActionSpec defines the desired state of RedisCacheAction | ||
properties: | ||
actionName: | ||
enum: | ||
- rollallkeys | ||
- rollprimarykey | ||
- rollsecondarykey | ||
type: string | ||
cacheName: | ||
type: string | ||
keyVaultToStoreSecrets: | ||
type: string | ||
resourceGroup: | ||
type: string | ||
secretName: | ||
type: string | ||
required: | ||
- actionName | ||
- cacheName | ||
- resourceGroup | ||
type: object | ||
status: | ||
description: ASOStatus (AzureServiceOperatorsStatus) defines the observed | ||
state of resource actions | ||
properties: | ||
completed: | ||
format: date-time | ||
type: string | ||
containsUpdate: | ||
type: boolean | ||
failedProvisioning: | ||
type: boolean | ||
flattenedSecrets: | ||
type: boolean | ||
message: | ||
type: string | ||
pollingUrl: | ||
type: string | ||
provisioned: | ||
type: boolean | ||
provisioning: | ||
type: boolean | ||
requested: | ||
format: date-time | ||
type: string | ||
resourceId: | ||
type: string | ||
specHash: | ||
type: string | ||
state: | ||
type: string | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
108 changes: 108 additions & 0 deletions
108
....k8s.io_v1beta1_customresourcedefinition_rediscachefirewallrules.azure.microsoft.com.yaml
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,108 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.5 | ||
creationTimestamp: null | ||
name: rediscachefirewallrules.azure.microsoft.com | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.provisioned | ||
name: Provisioned | ||
type: string | ||
- JSONPath: .status.message | ||
name: Message | ||
type: string | ||
group: azure.microsoft.com | ||
names: | ||
kind: RedisCacheFirewallRule | ||
listKind: RedisCacheFirewallRuleList | ||
plural: rediscachefirewallrules | ||
singular: rediscachefirewallrule | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: RedisCacheFirewallRule is the Schema for the rediscachefirewallrules | ||
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: RedisCacheFirewallRuleSpec defines the desired state of RedisCacheFirewallRule | ||
properties: | ||
properties: | ||
description: RedisCacheFirewallRuleProperties the parameters of the | ||
RedisCacheFirewallRule | ||
properties: | ||
endIP: | ||
type: string | ||
startIP: | ||
type: string | ||
required: | ||
- endIP | ||
- startIP | ||
type: object | ||
redisCache: | ||
type: string | ||
resourceGroup: | ||
type: string | ||
required: | ||
- properties | ||
- redisCache | ||
- resourceGroup | ||
type: object | ||
status: | ||
description: ASOStatus (AzureServiceOperatorsStatus) defines the observed | ||
state of resource actions | ||
properties: | ||
completed: | ||
format: date-time | ||
type: string | ||
containsUpdate: | ||
type: boolean | ||
failedProvisioning: | ||
type: boolean | ||
flattenedSecrets: | ||
type: boolean | ||
message: | ||
type: string | ||
pollingUrl: | ||
type: string | ||
provisioned: | ||
type: boolean | ||
provisioning: | ||
type: boolean | ||
requested: | ||
format: date-time | ||
type: string | ||
resourceId: | ||
type: string | ||
specHash: | ||
type: string | ||
state: | ||
type: string | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ metadata: | |
labels: | ||
control-plane: controller-manager | ||
name: {{ .Values.namespace }} | ||
{{- end}} | ||
{{- end }} |
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