-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
236 changed files
with
12,853 additions
and
3,121 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
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 |
---|---|---|
|
@@ -39,6 +39,7 @@ package-lock.json | |
|
||
# Testing | ||
cypress | ||
coverage | ||
|
||
# Airy config files | ||
airy.yaml | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.44.0 | ||
0.45.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
kafka.cleanup=true | ||
kafka.commit-interval-ms=100 | ||
kubernetes.namespace=default | ||
kubernetes.app=api-admin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,106 @@ | ||
module cli | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/Masterminds/sprig v2.22.0+incompatible | ||
github.com/TwinProduction/go-color v1.0.0 | ||
github.com/airyhq/airy/infrastructure/lib/go/k8s/util v0.0.0-20210813123122-f26352d78a88 | ||
github.com/airyhq/airy v0.0.0-20220525151558-d1b9cb353828 | ||
github.com/airyhq/airy/infrastructure/lib/go/k8s/util v0.0.0-20220525151558-d1b9cb353828 | ||
github.com/airyhq/airy/lib/go/httpclient v0.0.0 | ||
github.com/aws/aws-sdk-go v1.37.29 | ||
github.com/aws/aws-sdk-go-v2/config v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/eks v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/iam v1.1.1 | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/kr/pretty v0.2.1 | ||
github.com/mitchellh/copystructure v1.1.2 // indirect | ||
github.com/aws/aws-sdk-go v1.44.21 | ||
github.com/aws/aws-sdk-go-v2/config v1.15.7 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.44.0 | ||
github.com/aws/aws-sdk-go-v2/service/eks v1.21.1 | ||
github.com/aws/aws-sdk-go-v2/service/iam v1.18.5 | ||
github.com/kr/pretty v0.3.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/spf13/viper v1.7.1 | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/spf13/viper v1.11.0 | ||
github.com/thanhpk/randstr v1.0.4 | ||
github.com/txn2/txeh v1.3.0 | ||
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect | ||
goji.io v2.0.2+incompatible | ||
gopkg.in/segmentio/analytics-go.v3 v3.1.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.19.0 | ||
k8s.io/apimachinery v0.19.0 | ||
k8s.io/client-go v0.19.0 | ||
k8s.io/api v0.24.0 | ||
k8s.io/apimachinery v0.24.0 | ||
k8s.io/client-go v0.24.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.100.2 // indirect | ||
cloud.google.com/go/compute v1.6.1 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/aws/aws-sdk-go-v2 v1.16.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.12.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.11.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.16.6 // indirect | ||
github.com/aws/smithy-go v1.11.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/emicklei/go-restful v2.15.0+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.21.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.1 // indirect | ||
github.com/rogpeppe/go-internal v1.8.1 // indirect | ||
github.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect | ||
github.com/spf13/afero v1.8.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.3.0 // indirect | ||
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect | ||
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect | ||
golang.org/x/net v0.0.0-20220524220425-1d687d428aca // indirect | ||
golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.66.4 // indirect | ||
gopkg.in/yaml.v3 v3.0.0 // indirect | ||
k8s.io/klog v1.0.0 // indirect | ||
k8s.io/klog/v2 v2.60.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20220413171646-5e7f5fdc6da6 // indirect | ||
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect | ||
sigs.k8s.io/json v0.0.0-20220525155127-227cbc7cc124 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) | ||
|
||
replace github.com/airyhq/airy/lib/go/httpclient => ../lib/go/httpclient |
Oops, something went wrong.