/
left76
/
ccli6
Обзор
Документация
Войти
/
left76
/
ccli6
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
cli/command/stack/options/opts.go
42 строки
778 B
Silvin Lubecki
Add --all-namespaces to docker stack ls command on Kubernetes orchestrator, to list all stacks in all namespaces.
09 май 2018, 18:33
09 май 2018, 18:33
f097831
Код
Авторство
О чём код?
package options import "github.com/docker/cli/opts" // Deploy holds docker stack deploy options type Deploy struct { Bundlefile string Composefiles []string Namespace string ResolveImage string SendRegistryAuth bool Prune bool } // List holds docker stack ls options type List struct { Format string AllNamespaces bool } // PS holds docker stack ps options type PS struct { Filter opts.FilterOpt NoTrunc bool Namespace string NoResolve bool Quiet bool Format string } // Remove holds docker stack remove options type Remove struct { Namespaces []string } // Services holds docker stack services options type Services struct { Quiet bool Format string Filter opts.FilterOpt Namespace string }