123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /*
- Copyright 2016 The Rook Authors. All rights reserved.
- 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.
- */
- package client
- import (
- "context"
- "fmt"
- "net"
- "testing"
- "time"
- "github.com/pkg/errors"
- cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
- cephver "github.com/rook/rook/pkg/operator/ceph/version"
- "github.com/rook/rook/pkg/operator/k8sutil"
- "github.com/stretchr/testify/assert"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/types"
- )
- // ClusterInfo is a collection of information about a particular Ceph cluster. Rook uses information
- // about the cluster to configure daemons to connect to the desired cluster.
- type ClusterInfo struct {
- FSID string
- MonitorSecret string
- CephCred CephCred
- Monitors map[string]*MonInfo
- CephVersion cephver.CephVersion
- Namespace string
- OwnerInfo *k8sutil.OwnerInfo
- // Hide the name of the cluster since in 99% of uses we want to use the cluster namespace.
- // If the CR name is needed, access it through the NamespacedName() method.
- name string
- OsdUpgradeTimeout time.Duration
- NetworkSpec cephv1.NetworkSpec
- CSIDriverSpec cephv1.CSIDriverSpec
- // A context to cancel the context it is used to determine whether the reconcile loop should
- // exist (if the context has been cancelled). This cannot be in main clusterd context since this
- // is a pointer passed through the entire life cycle or the operator. If the context is
- // cancelled it will immediately be re-created, thus existing reconciles loops will not be
- // cancelled.
- // Whereas if passed through clusterInfo, we don't have that problem since clusterInfo is
- // re-hydrated when a context is cancelled.
- Context context.Context
- }
- // MonInfo is a collection of information about a Ceph mon.
- type MonInfo struct {
- Name string `json:"name"`
- Endpoint string `json:"endpoint"`
- // Whether detected out of quorum by rook. May be different from actual ceph quorum.
- OutOfQuorum bool `json:"outOfQuorum"`
- }
- // CephCred represents the Ceph cluster username and key used by the operator.
- // For converged clusters it will be the admin key, but external clusters will have a
- // lower-privileged key.
- type CephCred struct {
- Username string `json:"name"`
- Secret string `json:"secret"`
- }
- func NewClusterInfo(namespace, name string) *ClusterInfo {
- return &ClusterInfo{Namespace: namespace, name: name}
- }
- func (c *ClusterInfo) SetName(name string) {
- c.name = name
- }
- func (c *ClusterInfo) NamespacedName() types.NamespacedName {
- if c.name == "" {
- panic("name is not set on the clusterInfo")
- }
- return types.NamespacedName{Namespace: c.Namespace, Name: c.name}
- }
- // AdminClusterInfo() creates a ClusterInfo with the basic info to access the cluster
- // as an admin.
- func AdminClusterInfo(ctx context.Context, namespace, name string) *ClusterInfo {
- ownerInfo := k8sutil.NewOwnerInfoWithOwnerRef(&metav1.OwnerReference{}, "")
- return &ClusterInfo{
- Namespace: namespace,
- CephCred: CephCred{
- Username: AdminUsername,
- },
- name: name,
- OwnerInfo: ownerInfo,
- Context: ctx,
- }
- }
- // AdminTestClusterInfo() creates a ClusterInfo with the basic info to access the cluster
- // as an admin. This cluster info should only be used by unit or integration tests.
- func AdminTestClusterInfo(namespace string) *ClusterInfo {
- return AdminClusterInfo(context.TODO(), namespace, "testing")
- }
- // IsInitialized returns true if the critical information in the ClusterInfo struct has been filled
- // in. This method exists less out of necessity than the desire to be explicit about the lifecycle
- // of the ClusterInfo struct during startup, specifically that it is expected to exist after the
- // Rook operator has started up or connected to the first components of the Ceph cluster.
- func (c *ClusterInfo) IsInitialized() error {
- if c == nil {
- return errors.New("clusterInfo is nil")
- }
- if c.FSID == "" {
- return errors.New("cluster fsid is empty")
- }
- if c.MonitorSecret == "" {
- return errors.New("monitor secret is empty")
- }
- if c.CephCred.Username == "" {
- return errors.New("ceph username is empty")
- }
- if c.CephCred.Secret == "" {
- return errors.New("ceph secret is empty")
- }
- if c.Context == nil {
- return errors.New("context is nil")
- }
- if c.Context.Err() != nil {
- return c.Context.Err()
- }
- return nil
- }
- // NewMonInfo returns a new Ceph mon info struct from the given inputs.
- func NewMonInfo(name, ip string, port int32) *MonInfo {
- return &MonInfo{Name: name, Endpoint: net.JoinHostPort(ip, fmt.Sprintf("%d", port))}
- }
- func NewMinimumOwnerInfo(t *testing.T) *k8sutil.OwnerInfo {
- cluster := &cephv1.CephCluster{}
- scheme := runtime.NewScheme()
- err := cephv1.AddToScheme(scheme)
- assert.NoError(t, err)
- return k8sutil.NewOwnerInfo(cluster, scheme)
- }
- func NewMinimumOwnerInfoWithOwnerRef() *k8sutil.OwnerInfo {
- return k8sutil.NewOwnerInfoWithOwnerRef(&metav1.OwnerReference{}, "")
- }
|