Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
bpineau committed Apr 2, 2018
1 parent e730946 commit 15073c7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ release:
# don't autopublish
draft: true

archive:
format: binary

dockers:
-
image: bpineau/katafygio
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.goreleaser
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.7
RUN apk --no-cache add ca-certificates
RUN apk --no-cache add ca-certificates git
COPY katafygio /usr/bin/
ENTRYPOINT ["/usr/bin/katafygio"]
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ objects, that may bloat the git history.

```bash
# Filtering out replicasets and pods since they are managed by Deployments
# (already archived), secrets to keep them confidential, and the leader-elector
# (already archived), endpoints (managed by Services), secrets (to keep them
# confidential), events and node (irrelevant), and the leader-elector
# configmap that has low value and changes a lot, causing commits churn.

katafygio \
-g https://user:[email protected]/myorg/myrepos.git -e /tmp/kfdump \
-x secret -x pod -x replicaset -y configmap:kube-system/leader-elector
-x secret -x pod -x replicaset -x node -x endpoints -x event \
-y configmap:kube-system/leader-elector
```

## Supported resources
Expand Down

0 comments on commit 15073c7

Please sign in to comment.