Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dehort committed Nov 14, 2024
1 parent 7df8e20 commit 4477a90
Show file tree
Hide file tree
Showing 6 changed files with 226 additions and 184 deletions.
1 change: 1 addition & 0 deletions build/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ WORKDIR /
COPY --from=builder /go/src/app/pt-api ./pt-api
COPY --from=builder /go/src/app/pt-consumer ./pt-consumer
COPY --from=builder /go/src/app/pt-migration ./pt-migration
COPY --from=builder /go/src/app/migrations /db/migrations/
COPY --from=builder /go/src/app/pt-seeder ./pt-seeder
COPY tools ./tools

Expand Down
1 change: 1 addition & 0 deletions deployments/clowdapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ objects:
envName: ${ENV_NAME}
database:
name: payloadtracker
version: 16
kafkaTopics:
- replicas: 3
partitions: 20
Expand Down
53 changes: 32 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,35 @@ go 1.20

require (
github.com/aws/aws-sdk-go v1.50.0
github.com/confluentinc/confluent-kafka-go v1.7.0
github.com/confluentinc/confluent-kafka-go v1.8.2
github.com/go-chi/chi/v5 v5.0.11
github.com/go-chi/httprate v0.6.0
github.com/google/uuid v1.3.0
github.com/go-redis/redis/v8 v8.11.5
github.com/golang-migrate/migrate/v4 v4.18.1
github.com/google/uuid v1.6.0
github.com/lib/pq v1.10.9
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.31.1
github.com/prometheus/client_golang v1.11.1
github.com/redhatinsights/app-common-go v1.6.3
github.com/prometheus/client_golang v1.12.1
github.com/redhatinsights/app-common-go v1.6.6
github.com/redhatinsights/export-service-go v0.0.0-20241113152134-268a29b32291
github.com/redhatinsights/platform-go-middlewares/v2 v2.0.0-beta.2
github.com/sirupsen/logrus v1.9.3
github.com/spf13/viper v1.8.1
github.com/spf13/viper v1.11.0
go.uber.org/zap v1.26.0
gorm.io/driver/postgres v1.3.4
gorm.io/gorm v1.23.4
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.14.3 // indirect
Expand All @@ -38,25 +46,28 @@ require (
github.com/jinzhu/now v1.1.4 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/pelletier/go-toml v1.9.3 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.26.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.18.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit 4477a90

Please sign in to comment.