Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TD-1809] GROMIT - Many template updates #189

Merged
merged 31 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
59a347a
gpac template update
alephnull May 26, 2023
5bc1a6a
tests
alephnull Jun 19, 2023
b1fd510
fix config.yml duplicates
ermirizio Jun 22, 2023
99797cd
update gomod go sum
ermirizio Jun 22, 2023
6c2ad7f
Update cmdtest testcase
asutosh Jun 27, 2023
a2dc208
Update cmdtest test data
asutosh Jun 27, 2023
d3b824b
add new var for goversion, remove aws, sync-automation enabled toggle
ermirizio Jul 3, 2023
793db38
Update config yml for tyk, lint sync-automation tmpl
ermirizio Jul 3, 2023
cc137e4
add required env for tests
ermirizio Jul 6, 2023
9536969
Massive update for config.yaml
ermirizio Jul 7, 2023
7278910
add missing changes from master
ermirizio Jul 7, 2023
d7e1fd5
fix indentation as of master
ermirizio Jul 10, 2023
309625a
bit of rework
ermirizio Jul 10, 2023
e492bcd
adding GolangCrossSuffix var
ermirizio Jul 10, 2023
21db47b
updates
ermirizio Jul 10, 2023
83afced
trim
ermirizio Jul 10, 2023
806d39f
misc
ermirizio Jul 10, 2023
b3ff4d4
update for tib
ermirizio Jul 10, 2023
2e5e7b5
UPDATES FOR TIB
ermirizio Jul 11, 2023
075952c
Fix ubi9 curl-minimal issue
asutosh Jul 12, 2023
c379b1d
add release 5.0.4 and 5.1.1
ermirizio Jul 21, 2023
2ed1301
goreleaser deprecations
alephnull Jul 25, 2023
dd5f3af
use latest goreleaser action
alephnull Jul 25, 2023
64ec507
Remove plugin compiler from templates
asutosh Jul 25, 2023
74c5c6b
[TD-1965]: Add service container for httpbin
asutosh Jul 25, 2023
f95fedf
remove api-test
ermirizio Jul 25, 2023
055d7e8
last min changes
alephnull Jul 26, 2023
7c08b8b
plugin compiler removed from el7
alephnull Jul 26, 2023
133ed35
gw reqd test
alephnull Jul 26, 2023
637f47c
revert back goreleasersuffix
ermirizio Jul 27, 2023
0df4538
fix conditions, working
ermirizio Jul 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/cmdtest/root/commands.ct
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ Flags:
-f, --conf string YAML config file. If not supplied, embedded defaults will be used
-h, --help help for gromit
--loglevel string Log verbosity: trace, debug, info, warn, error/fatal (default "info")
--textlogs Logs in plain text
--textlogs Logs in plain text (default true)

Use "gromit [command] --help" for more information about a command.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func init() {

rootCmd.PersistentFlags().StringVarP(&cfgFile, "conf", "f", "", "YAML config file. If not supplied, embedded defaults will be used")
rootCmd.PersistentFlags().String("loglevel", "info", "Log verbosity: trace, debug, info, warn, error/fatal")
rootCmd.PersistentFlags().Bool("textlogs", false, "Logs in plain text")
rootCmd.PersistentFlags().Bool("textlogs", true, "Logs in plain text")
}

// initConfig reads in config file and env variables if set.
Expand Down
Loading
Loading