Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 6
HYPERFLEET-1405 - fix: regenerate stale manager RBAC, restore lint rules, fill in README#4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| --- | ||
| apiVersion: apiextensions.k8s.io/v1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| annotations: | ||
| controller-gen.kubebuilder.io/version: v0.21.0 | ||
| name: hyperfleetconfigs.hyperfleet.redhat.com | ||
| spec: | ||
| group: hyperfleet.redhat.com | ||
| names: | ||
| kind: HyperFleetConfig | ||
| listKind: HyperFleetConfigList | ||
| plural: hyperfleetconfigs | ||
| singular: hyperfleetconfig | ||
| scope: Namespaced | ||
| versions: | ||
| - name: v1alpha | ||
| schema: | ||
| openAPIV3Schema: | ||
| description: HyperFleetConfig is the Schema for the hyperfleetconfigs 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: HyperFleetConfigSpec defines the desired state of HyperFleetConfig. | ||
| properties: | ||
| foo: | ||
| description: Foo is an example field of HyperFleetConfig. Edit hyperfleetconfig_types.go | ||
| to remove/update | ||
| type: string | ||
| type: object | ||
| status: | ||
| description: HyperFleetConfigStatus defines the observed state of HyperFleetConfig. | ||
| type: object | ||
| type: object | ||
| served: true | ||
| storage: true | ||
| subresources: | ||
| status: {} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,32 @@ | ||
| --- | ||
| apiVersion: rbac.authorization.k8s.io/v1 | ||
| kind: ClusterRole | ||
| metadata: | ||
| labels: | ||
| app.kubernetes.io/name: hyperfleet-operator | ||
| app.kubernetes.io/managed-by: kustomize | ||
| name: manager-role | ||
| rules: | ||
| - apiGroups: [""] | ||
| resources: ["pods"] | ||
| verbs: ["get", "list", "watch"] | ||
| - apiGroups: | ||
| - hyperfleet.redhat.com | ||
| resources: | ||
| - hyperfleetconfigs | ||
| verbs: | ||
| - create | ||
| - delete | ||
| - get | ||
| - list | ||
| - patch | ||
| - update | ||
| - watch | ||
| - apiGroups: | ||
| - hyperfleet.redhat.com | ||
| resources: | ||
| - hyperfleetconfigs/finalizers | ||
| verbs: | ||
| - update | ||
| - apiGroups: | ||
| - hyperfleet.redhat.com | ||
| resources: | ||
| - hyperfleetconfigs/status | ||
| verbs: | ||
| - get | ||
| - patch | ||
| - update |
Uh oh!
There was an error while loading. Please reload this page.