-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator pulsar-resources-operator (0.5.3)
- Loading branch information
1 parent
7f8bf54
commit 5962a72
Showing
17 changed files
with
3,575 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
operators/pulsar-resources-operator/0.5.3/bundle.Dockerfile
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,21 @@ | ||
FROM scratch | ||
|
||
# Core bundle labels. | ||
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 | ||
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ | ||
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ | ||
LABEL operators.operatorframework.io.bundle.package.v1=pulsar-resources-operator | ||
LABEL operators.operatorframework.io.bundle.channels.v1=alpha,beta,stable | ||
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha | ||
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.31.0 | ||
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1 | ||
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3 | ||
|
||
# Labels for testing. | ||
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1 | ||
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/ | ||
|
||
# Copy files to locations specified by labels. | ||
COPY bundle/manifests /manifests/ | ||
COPY bundle/metadata /metadata/ | ||
COPY bundle/tests/scorecard /tests/scorecard/ |
17 changes: 17 additions & 0 deletions
17
....3/manifests/pulsar-resources-operator-controller-manager-metrics-service_v1_service.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,17 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
control-plane: controller-manager | ||
name: pulsar-resources-operator-controller-manager-metrics-service | ||
spec: | ||
ports: | ||
- name: https | ||
port: 8443 | ||
protocol: TCP | ||
targetPort: https | ||
selector: | ||
control-plane: controller-manager | ||
status: | ||
loadBalancer: {} |
31 changes: 31 additions & 0 deletions
31
...urces-operator/0.5.3/manifests/pulsar-resources-operator-manager-config_v1_configmap.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,31 @@ | ||
apiVersion: v1 | ||
data: | ||
controller_manager_config.yaml: | | ||
# Copyright 2022 StreamNative | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1 | ||
kind: ControllerManagerConfig | ||
health: | ||
healthProbeBindAddress: :8081 | ||
metrics: | ||
bindAddress: 127.0.0.1:8080 | ||
webhook: | ||
port: 9443 | ||
leaderElection: | ||
leaderElect: true | ||
resourceName: ed4866ca.streamnative.io | ||
kind: ConfigMap | ||
metadata: | ||
name: pulsar-resources-operator-manager-config |
10 changes: 10 additions & 0 deletions
10
...ts/pulsar-resources-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.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,10 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: pulsar-resources-operator-metrics-reader | ||
rules: | ||
- nonResourceURLs: | ||
- /metrics | ||
verbs: | ||
- get |
667 changes: 667 additions & 0 deletions
667
...r-resources-operator/0.5.3/manifests/pulsar-resources-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
265 changes: 265 additions & 0 deletions
265
...pulsar-resources-operator/0.5.3/manifests/resource.streamnative.io_pulsarconnections.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,265 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.15.0 | ||
creationTimestamp: null | ||
name: pulsarconnections.resource.streamnative.io | ||
spec: | ||
group: resource.streamnative.io | ||
names: | ||
categories: | ||
- pulsar | ||
- pulsarres | ||
kind: PulsarConnection | ||
listKind: PulsarConnectionList | ||
plural: pulsarconnections | ||
shortNames: | ||
- pconn | ||
singular: pulsarconnection | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.adminServiceURL | ||
name: ADMIN_SERVICE_URL | ||
type: string | ||
- jsonPath: .spec.adminServiceSecureURL | ||
name: ADMIN_SERVICE_SECURE_URL | ||
priority: 1 | ||
type: string | ||
- jsonPath: .spec.brokerServiceURL | ||
name: BROKER_SERVICE_URL | ||
type: string | ||
- jsonPath: .spec.brokerServiceSecureURL | ||
name: BROKER_SERVICE_SECURE_URL | ||
priority: 1 | ||
type: string | ||
- jsonPath: .metadata.generation | ||
name: GENERATION | ||
priority: 1 | ||
type: string | ||
- jsonPath: .status.observedGeneration | ||
name: OBSERVED_GENERATION | ||
priority: 1 | ||
type: string | ||
- jsonPath: .status.conditions[?(@.type=="Ready")].status | ||
name: READY | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: PulsarConnection is the Schema for the pulsarconnections 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: PulsarConnectionSpec defines the desired state of PulsarConnection | ||
properties: | ||
adminServiceSecureURL: | ||
description: AdminServiceSecureURL is the admin service url for secure | ||
connection. | ||
pattern: ^https://.+$ | ||
type: string | ||
adminServiceURL: | ||
description: AdminServiceURL is the admin service url of the pulsar | ||
cluster | ||
pattern: ^https?://.+$ | ||
type: string | ||
authentication: | ||
description: Authentication defines authentication configurations | ||
properties: | ||
oauth2: | ||
description: PulsarAuthenticationOAuth2 indicates the parameters | ||
which are need by pulsar OAuth2 | ||
properties: | ||
audience: | ||
type: string | ||
clientID: | ||
type: string | ||
issuerEndpoint: | ||
type: string | ||
key: | ||
description: ValueOrSecretRef is a string or a secret reference | ||
of the authentication | ||
properties: | ||
secretRef: | ||
description: SecretKeyRef indicates a secret name and | ||
key | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
required: | ||
- key | ||
- name | ||
type: object | ||
value: | ||
type: string | ||
type: object | ||
scope: | ||
type: string | ||
required: | ||
- audience | ||
- clientID | ||
- issuerEndpoint | ||
- key | ||
type: object | ||
token: | ||
description: ValueOrSecretRef is a string or a secret reference | ||
of the authentication | ||
properties: | ||
secretRef: | ||
description: SecretKeyRef indicates a secret name and key | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
required: | ||
- key | ||
- name | ||
type: object | ||
value: | ||
type: string | ||
type: object | ||
type: object | ||
brokerClientTrustCertsFilePath: | ||
description: BrokerClientTrustCertsFilePath Path for the trusted TLS | ||
certificate file for outgoing connection to a server (broker) | ||
type: string | ||
brokerServiceSecureURL: | ||
description: BrokerServiceSecureURL is the broker service url for | ||
secure connection. | ||
pattern: ^pulsar\+ssl://.+$ | ||
type: string | ||
brokerServiceURL: | ||
description: BrokerServiceURL is the broker service url of the pulsar | ||
cluster | ||
pattern: ^pulsar?://.+$ | ||
type: string | ||
clusterName: | ||
description: |- | ||
ClusterName indicates the local cluster name of the pulsar cluster. It should | ||
set when enabling the Geo Replication | ||
type: string | ||
type: object | ||
status: | ||
description: PulsarConnectionStatus defines the observed state of PulsarConnection | ||
properties: | ||
conditions: | ||
description: Represents the observations of a connection's current | ||
state. | ||
items: | ||
description: |- | ||
Condition contains details for one aspect of the current state of this API Resource. | ||
--- | ||
This struct is intended for direct use as an array at the field path .status.conditions. For example, | ||
type FooStatus struct{ | ||
// Represents the observations of a foo's current state. | ||
// Known .status.conditions.type are: "Available", "Progressing", and "Degraded" | ||
// +patchMergeKey=type | ||
// +patchStrategy=merge | ||
// +listType=map | ||
// +listMapKey=type | ||
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` | ||
// other fields | ||
} | ||
properties: | ||
lastTransitionTime: | ||
description: |- | ||
lastTransitionTime is the last time the condition transitioned from one status to another. | ||
This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. | ||
format: date-time | ||
type: string | ||
message: | ||
description: |- | ||
message is a human readable message indicating details about the transition. | ||
This may be an empty string. | ||
maxLength: 32768 | ||
type: string | ||
observedGeneration: | ||
description: |- | ||
observedGeneration represents the .metadata.generation that the condition was set based upon. | ||
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date | ||
with respect to the current state of the instance. | ||
format: int64 | ||
minimum: 0 | ||
type: integer | ||
reason: | ||
description: |- | ||
reason contains a programmatic identifier indicating the reason for the condition's last transition. | ||
Producers of specific condition types may define expected values and meanings for this field, | ||
and whether the values are considered a guaranteed API. | ||
The value should be a CamelCase string. | ||
This field may not be empty. | ||
maxLength: 1024 | ||
minLength: 1 | ||
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ | ||
type: string | ||
status: | ||
description: status of the condition, one of True, False, Unknown. | ||
enum: | ||
- "True" | ||
- "False" | ||
- Unknown | ||
type: string | ||
type: | ||
description: |- | ||
type of condition in CamelCase or in foo.example.com/CamelCase. | ||
--- | ||
Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be | ||
useful (see .node.status.conditions), the ability to deconflict is important. | ||
The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) | ||
maxLength: 316 | ||
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ | ||
type: string | ||
required: | ||
- lastTransitionTime | ||
- message | ||
- reason | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
x-kubernetes-list-map-keys: | ||
- type | ||
x-kubernetes-list-type: map | ||
observedGeneration: | ||
description: |- | ||
ObservedGeneration is the most recent generation observed for this resource. | ||
It corresponds to the metadata generation, which is updated on mutation by the API Server. | ||
format: int64 | ||
type: integer | ||
secretKeyHash: | ||
description: SecretKeyHash is the hash of the secret ref | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.