You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support compose depends_on with condition: service_completed_successfully (#24)
* Support compose `depends_on` with `condition: service_completed_successfully`
* Add --event-diffs, -v to show event diffs as they come in from k8s. Very useful for debugging k8s internals.
* go.mod: update after `mod tidy`
* CI: test-job: skip go/load-cache, this seems to load old/incorrect versions
* Bump to libs docker v25.0.4, go-dockerclient v1.10.2, crypto v0.21.0
* CI: go mod download before tests
* CI: debug tests + old version of fsouza/go-dockerclient
* CI: before tests: - go/mod-download
Long: "creates pods and services in an order that respects depends_on in the docker compose file",
31
31
RunE: upCommand,
32
32
}
33
-
upCmd.PersistentFlags().BoolP("detach", "d", false, "Detached mode: Run containers in the background")
33
+
upCmd.PersistentFlags().BoolP("detach", "d", false, "Run in "+util.AnsiColorWrap("d", "4", "0")+"etached mode: runs containers in the background")
34
+
upCmd.PersistentFlags().BoolP("event-diffs", "v", false, "Show e"+util.AnsiColorWrap("v", "4", "0")+"ent diffs as they come in from k8s. Very useful for debugging k8s internals.")
fmt.Sprintf("The docker registry password to authenticate with. When unset, will use the Bearer Token from Kube config as is common for Openshift clusters. (env %s)", registryPassEnvVarName))
38
39
upCmd.PersistentFlags().BoolP("run-as-user", "", false, "When set, the runAsUser/runAsGroup will be set for each pod based on the "+
39
40
"user of the pod's image and the \"user\" key of the pod's docker-compose service")
40
-
upCmd.PersistentFlags().BoolP("skip-host-aliases", "a", false, "Skip adding all services ClusterIP in Pod host aliases (useful when in-cluster name resolving is sufficient)")
41
-
upCmd.PersistentFlags().BoolP("skip-push", "p", false, "Skip pushing images to registry: assumes they were previously pushed (helps get around connection problems to registry)")
42
-
upCmd.PersistentFlags().Int64P("tail-lines", "t", 10, "Pod history log lines to show when starting to tail logs.")
41
+
upCmd.PersistentFlags().BoolP("skip-host-aliases", "a", false, "Skip adding all services ClusterIP in Pod host "+util.AnsiColorWrap("a", "4", "0")+"liases (useful when in-cluster name resolving is sufficient)")
42
+
upCmd.PersistentFlags().BoolP("skip-push", "p", false, "Skip "+util.AnsiColorWrap("p", "4", "0")+"ushing images to registry: assumes they were previously pushed (helps get around connection problems to registry)")
43
+
upCmd.PersistentFlags().Int64P("tail-lines", "t", 10, "Pod history log lines to show when starting to "+util.AnsiColorWrap("t", "4", "0")+"ail logs.")
0 commit comments