Skip to content

Commit b4482c3

Browse files
authored
moved everything and got dep to pass (#14)
* moved everything and got dep to pass * added very basic build script * protos are broken * protos generating correctly * build works except for docs * remove unecessary install scripts * got docs pushing works * renamed chart * basic CLI * added basic schema functionality * helm manifest works properly now * event loop is working * added kube install * install command works * basic feature parity with the CLI * started basic example, and moved schema * can actually start playing with queries now * upgraded gloo * finished basic tutorial * example really works now * spelling mistake * cleaned up protos from PR * removed commented code besides tests * created CLI tests * all old unit tests are passing * midway through docs work * creating cli docs * added cli-gen to code-gen * upped gloo version to 0.7.6 * thanks marco, can now install into any namespace :) * updated code-gen * more checking on install command * made docs more closely match docs repo * getting started on kubernetes doc is now accurate * updated examples * removed docs from local dir * was in wrong dir * added docs gen to release build * removed unused code from tests
1 parent 7aa1f59 commit b4482c3

File tree

309 files changed

+12291
-14892
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

309 files changed

+12291
-14892
lines changed

.firebaserc

-14
This file was deleted.

.githooks/pre-commit

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/sh
2+
# Copyright 2012 The Go Authors. All rights reserved.
3+
# Use of this source code is governed by a BSD-style
4+
# license that can be found in the LICENSE file.
5+
6+
# git gofmt pre-commit hook
7+
#
8+
# To use, store as .git/hooks/pre-commit inside your repository and make sure
9+
# it has execute permissions.
10+
#
11+
# This script does not handle file names that contain spaces.
12+
13+
gofiles=$(git diff --cached --name-only --diff-filter=ACM | grep '\.go$')
14+
[ -z "$gofiles" ] && exit 0
15+
16+
unformatted=$(gofmt -l $gofiles)
17+
badimports=$(goimports -l $gofiles)
18+
[ -z "$unformatted" ] && [ -z "$badimports" ] && exit 0
19+
20+
# Some files are not gofmt'd or goimport'd. Print message and fail.
21+
22+
echo >&2 "Go files must be formatted with gofmt and goimport. Please run:"
23+
for fn in $unformatted; do
24+
echo >&2 " gofmt -w $PWD/$fn"
25+
done
26+
for fn in $badimports; do
27+
echo >&2 " goimports -w $PWD/$fn"
28+
done
29+
30+
exit 1

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,10 @@ cmd/sqoopctl/sqoopctl
1818
site/
1919
test/kube_e2e/kube_resources/test-install.yaml
2020
test/kube_e2e/kube_resources/testing-resources.yaml
21+
22+
# IDE
23+
.idea
24+
.vscode
25+
26+
# mac files
27+
.DS_Store

Dockerfile.site

-2
This file was deleted.

0 commit comments

Comments
 (0)