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

bump nginx and nginx-internal #1065

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions internal/api/request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ func TestNewCreateClusterRequestFromReader(t *testing.T) {
Provisioner: model.ProvisionerKops,
DesiredUtilityVersions: map[string]*model.HelmUtilityVersion{
"fluentbit": {Chart: "0.31.0", ValuesPath: ""},
"nginx": {Chart: "4.10.1", ValuesPath: ""},
"nginx-internal": {Chart: "4.10.1", ValuesPath: ""},
"nginx": {Chart: "4.11.1", ValuesPath: ""},
"nginx-internal": {Chart: "4.11.1", ValuesPath: ""},
"prometheus-operator": {Chart: "54.2.2", ValuesPath: ""},
"thanos": {Chart: "13.2.2", ValuesPath: ""},
"teleport": {Chart: "10.3.16", ValuesPath: ""},
Expand Down Expand Up @@ -100,8 +100,8 @@ func TestNewCreateClusterRequestFromReader(t *testing.T) {
Provisioner: model.ProvisionerKops,
DesiredUtilityVersions: map[string]*model.HelmUtilityVersion{
"fluentbit": {Chart: "0.31.0", ValuesPath: ""},
"nginx": {Chart: "4.10.1", ValuesPath: ""},
"nginx-internal": {Chart: "4.10.1", ValuesPath: ""},
"nginx": {Chart: "4.11.1", ValuesPath: ""},
"nginx-internal": {Chart: "4.11.1", ValuesPath: ""},
"prometheus-operator": {Chart: "54.2.2", ValuesPath: ""},
"thanos": {Chart: "13.2.2", ValuesPath: ""},
"teleport": {Chart: "10.3.16", ValuesPath: ""},
Expand Down
4 changes: 2 additions & 2 deletions model/cluster_utility.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ var DefaultUtilityVersions map[string]*HelmUtilityVersion = map[string]*HelmUtil
// ThanosCanonicalName defines the default version and values path for the Helm chart
ThanosCanonicalName: {Chart: "13.2.2", ValuesPath: ""},
// NginxCanonicalName defines the default version and values path for the Helm chart
NginxCanonicalName: {Chart: "4.10.1", ValuesPath: ""},
NginxCanonicalName: {Chart: "4.11.1", ValuesPath: ""},
// NginxInternalCanonicalName defines the default version and values path for the Helm chart
NginxInternalCanonicalName: {Chart: "4.10.1", ValuesPath: ""},
NginxInternalCanonicalName: {Chart: "4.11.1", ValuesPath: ""},
// FluentbitCanonicalName defines the default version and values path for the Helm chart
FluentbitCanonicalName: {Chart: "0.31.0", ValuesPath: ""},
// TeleportCanonicalName defines the default version and values path for the Helm chart
Expand Down