mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-24 23:34:45 +00:00
🐳 Set the Docker image tags to latest
This commit is contained in:
parent
cb60a4cc4c
commit
0736f6120c
@ -8,7 +8,6 @@ import (
|
||||
|
||||
"github.com/kubeshark/kubeshark/config/configStructs"
|
||||
"github.com/kubeshark/kubeshark/kubeshark"
|
||||
"github.com/kubeshark/kubeshark/utils"
|
||||
"github.com/kubeshark/worker/models"
|
||||
"github.com/op/go-logging"
|
||||
v1 "k8s.io/api/core/v1"
|
||||
@ -86,7 +85,7 @@ func (config *ConfigStruct) validate() error {
|
||||
}
|
||||
|
||||
func (config *ConfigStruct) SetDefaults() {
|
||||
config.AgentImage = fmt.Sprintf("%s:%s", utils.KubesharkAgentImageRepo, kubeshark.Ver)
|
||||
config.AgentImage = "kubeshark/hub:latest"
|
||||
config.ConfigFilePath = path.Join(kubeshark.GetKubesharkFolderPath(), "config.yaml")
|
||||
}
|
||||
|
||||
|
@ -329,7 +329,7 @@ func (tapperSyncer *KubesharkTapperSyncer) updateKubesharkTappers() error {
|
||||
tapperSyncer.context,
|
||||
tapperSyncer.config.KubesharkResourcesNamespace,
|
||||
TapperDaemonSetName,
|
||||
"kubeshark/worker:test-amd64",
|
||||
"kubeshark/worker:latest",
|
||||
TapperPodName,
|
||||
fmt.Sprintf("%s.%s.svc", ApiServerPodName, tapperSyncer.config.KubesharkResourcesNamespace),
|
||||
nodeNames,
|
||||
|
@ -427,7 +427,7 @@ func (provider *Provider) BuildFrontPod(opts *ApiServerOptions, mountVolumeClaim
|
||||
containers := []core.Container{
|
||||
{
|
||||
Name: "front",
|
||||
Image: "kubeshark/front:test-amd64",
|
||||
Image: "kubeshark/front:latest",
|
||||
ImagePullPolicy: opts.ImagePullPolicy,
|
||||
VolumeMounts: volumeMounts,
|
||||
ReadinessProbe: &core.Probe{
|
||||
|
@ -2,7 +2,6 @@ package utils
|
||||
|
||||
const (
|
||||
KubesharkFilteringOptionsEnvVar = "SENSITIVE_DATA_FILTERING_OPTIONS"
|
||||
KubesharkAgentImageRepo = "docker.io/kubeshark/hub"
|
||||
LogLevelEnvVar = "LOG_LEVEL"
|
||||
BaseninePort = "9099"
|
||||
HostModeEnvVar = "HOST_MODE"
|
||||
|
Loading…
Reference in New Issue
Block a user