Skip to content

Commit 78ac6c6

Browse files
authored
Change PackageRegistryConfigSecretName default (#1936)
1 parent 08cec05 commit 78ac6c6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

components/buildless-serverless/internal/config/function_config.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
package config
22

33
import (
4+
"os"
5+
"path/filepath"
6+
"time"
7+
48
"github.com/pkg/errors"
59
"github.com/vrischmann/envconfig"
610
"gopkg.in/yaml.v2"
711
corev1 "k8s.io/api/core/v1"
812
"k8s.io/apimachinery/pkg/api/resource"
9-
"os"
10-
"path/filepath"
11-
"time"
1213
)
1314

1415
type FunctionConfig struct {
@@ -43,7 +44,7 @@ func defaultFunctionConfig() FunctionConfig {
4344
},
4445
RequeueDuration: time.Minute,
4546
FunctionReadyRequeueDuration: time.Minute * 5,
46-
PackageRegistryConfigSecretName: "buildless-serverless-package-registry-config",
47+
PackageRegistryConfigSecretName: "serverless-package-registry-config",
4748
FunctionPublisherProxyAddress: "http://eventing-publisher-proxy.kyma-system.svc.cluster.local/publish",
4849
InternalEndpointPort: ":12137",
4950
}

0 commit comments

Comments
 (0)