Skip to content

Commit

Permalink
Update ZET version
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed Oct 17, 2023
1 parent 400f4ce commit 17e5c31
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions zititest/models/simple/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package simple

import (
"embed"
"fmt"
"github.com/michaelquigley/pfxlog"
"github.com/openziti/fablab/kernel/lib/actions/component"
"github.com/openziti/fablab/kernel/lib/binding"
Expand All @@ -35,24 +34,15 @@ import (
"github.com/openziti/ziti/zititest/models/test_resources"
"github.com/openziti/ziti/zititest/zitilab"
"github.com/openziti/ziti/zititest/zitilab/actions/edge"
"github.com/sirupsen/logrus"
"os"
"time"
)

const ZitiEdgeTunnelVersion = "v0.21.4"
const ZitiEdgeTunnelVersion = "v0.22.11"

//go:embed configs
var configResource embed.FS

func getConfigData(filePath string) []byte {
data, err := configResource.ReadFile(fmt.Sprintf("configs/%s", filePath))
if err != nil {
logrus.Errorf("Unable to read config data from %s: [%s]", filePath, err)
}
return data
}

func getUniqueId() string {
if runId := os.Getenv("GITHUB_RUN_ID"); runId != "" {
return "-" + runId + "." + os.Getenv("GITHUB_RUN_ATTEMPT")
Expand Down

0 comments on commit 17e5c31

Please sign in to comment.