-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from bpineau/bpineau/filter-by-namespace
Support filtering by namespace
- Loading branch information
Showing
6 changed files
with
48 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,7 @@ Flags: | |
-v, --log-level string Log level (default "info") | ||
-o, --log-output string Log output (default "stderr") | ||
-r, --log-server string Log server (if using syslog) | ||
-a, --namespace string Only dump objects from this namespace | ||
-n, --no-git Don't version with git | ||
-i, --resync-interval int Full resync interval in seconds (0 to disable) (default 900) | ||
``` | ||
|
@@ -84,8 +85,7 @@ Flags: | |
|
||
All settings can be passed by command line options, or environment variable, or in | ||
[a yaml configuration file](https://github.com/bpineau/katafygio/blob/master/assets/katafygio.yaml) | ||
(thanks to Viper and Cobra libs). The environment are the same as cli options, | ||
in uppercase, prefixed by "KF", and with underscore instead of dashs. ie.: | ||
The environment are the same as command line options, in uppercase, prefixed by "KF_", and with underscore instead of dashs. ie.: | ||
|
||
``` | ||
export KF_GIT_URL=https://user:[email protected]/myorg/myrepos.git | ||
|
@@ -100,7 +100,7 @@ export KUBECONFIG=/tmp/kconfig | |
## Installation | ||
|
||
You can find pre-built binaries in the [releases](https://github.com/bpineau/katafygio/releases) page, | ||
ready to run on your desktop or in a cluster. | ||
ready to run on your desktop or in a Kubernetes cluster. | ||
|
||
We also provide a [docker image](https://hub.docker.com/r/bpineau/katafygio/). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters