github.com/verrazzano/verrazzano@v1.7.0/application-operator/controllers/logging/loginfo_test.go (about)

     1  // Copyright (c) 2021, Oracle and/or its affiliates.
     2  // Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
     3  
     4  package logging
     5  
     6  const (
     7  	testNamespace    = "test-namespace"
     8  	testAPIVersion   = "testv1"
     9  	testFluentdImage = "test-image:latest"
    10  )
    11  
    12  // createTestLogInfo creates a test logging info
    13  func createTestLogInfo(includeWorkload bool) *LogInfo {
    14  	scope := LogInfo{}
    15  	scope.FluentdImage = testFluentdImage
    16  	return &scope
    17  }