github.com/abayer/test-infra@v0.0.5/kubetest/node.go (about)

     1  /*
     2  Copyright 2017 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package main
    18  
    19  import (
    20  	"errors"
    21  	"log"
    22  	"time"
    23  )
    24  
    25  type nodeDeploy struct{}
    26  
    27  var _ deployer = nodeDeploy{}
    28  
    29  // TODO(krzyzacy): Move node creation/down logic into here
    30  func (n nodeDeploy) Up() error {
    31  	log.Print("Noop - Node Up()")
    32  	return nil
    33  }
    34  
    35  func (n nodeDeploy) IsUp() error {
    36  	log.Print("Noop - Node IsUp()")
    37  	return nil
    38  }
    39  
    40  func (n nodeDeploy) DumpClusterLogs(localPath, gcsPath string) error {
    41  	log.Printf("Noop - Node DumpClusterLogs() - %s: %s", localPath, gcsPath)
    42  	return nil
    43  }
    44  
    45  func (n nodeDeploy) TestSetup() error {
    46  	log.Print("Noop - Node TestSetup()")
    47  	return nil
    48  }
    49  
    50  func (n nodeDeploy) Down() error {
    51  	log.Print("Noop - Node Down()")
    52  	return nil
    53  }
    54  
    55  func (n nodeDeploy) GetClusterCreated(gcpProject string) (time.Time, error) {
    56  	return time.Time{}, errors.New("not implemented")
    57  }