forked from Katenary/katenary
Compare commits
4 Commits
fix-typos
...
feat-fix-i
| Author | SHA1 | Date | |
|---|---|---|---|
| 19c2277d04 | |||
|
584bcc6033
|
|||
|
aeff9215aa
|
|||
|
33e74b9758
|
@@ -49,7 +49,6 @@ fi
|
||||
|
||||
# Where to download the binary
|
||||
TAG=$(curl -sLf https://repo.katenary.io/api/v1/repos/katenary/katenary/releases/latest 2>/dev/null | grep -Po '"tag_name":\s*"[^"]*"' | cut -d ":" -f2 | tr -d '"')
|
||||
TAG=${TAG#releases/}
|
||||
|
||||
# use the right names for the OS and architecture
|
||||
if [ $ARCH = "x86_64" ]; then
|
||||
@@ -58,7 +57,6 @@ fi
|
||||
|
||||
BIN_URL="https://repo.katenary.io/api/packages/Katenary/generic/katenary/$TAG/katenary-$OS-$ARCH"
|
||||
|
||||
|
||||
echo
|
||||
echo "Downloading $BIN_URL"
|
||||
|
||||
|
||||
@@ -335,7 +335,7 @@ func (d *Deployment) SetEnvFrom(service types.ServiceConfig, appName string, sam
|
||||
_, ok := service.Environment[secret]
|
||||
if !ok {
|
||||
drop = append(drop, secret)
|
||||
logger.Warn("Secret " + secret + " not found in service " + service.Name + " - skipped")
|
||||
logger.Warn("Secret " + secret + " not found in service " + service.Name + " - skpped")
|
||||
continue
|
||||
}
|
||||
secrets = append(secrets, secret)
|
||||
@@ -352,7 +352,7 @@ func (d *Deployment) SetEnvFrom(service types.ServiceConfig, appName string, sam
|
||||
val, ok := service.Environment[value]
|
||||
if !ok {
|
||||
drop = append(drop, value)
|
||||
logger.Warn("Environment variable " + value + " not found in service " + service.Name + " - skipped")
|
||||
logger.Warn("Environment variable " + value + " not found in service " + service.Name + " - skpped")
|
||||
continue
|
||||
}
|
||||
if d.chart.Values[service.Name].(*Value).Environment == nil {
|
||||
|
||||
@@ -41,7 +41,7 @@ func Parse(profiles []string, envFiles []string, dockerComposeFile ...string) (*
|
||||
}
|
||||
}
|
||||
|
||||
options, err := cli.NewProjectOptions(dockerComposeFile,
|
||||
options, err := cli.NewProjectOptions(nil,
|
||||
cli.WithProfiles(profiles),
|
||||
cli.WithInterpolation(true),
|
||||
cli.WithDefaultConfigPath,
|
||||
|
||||
Reference in New Issue
Block a user