-
Notifications
You must be signed in to change notification settings - Fork 137
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
POC of Market Based Pricing #4070
Changes from all commits
2cf6179
85b2993
688d7ae
ac33b8c
fba6495
05b5f29
34f31b7
e1a24bf
f34243a
1c66a28
5d996fb
da86684
4b84852
056db40
a41b58a
b681cb1
05183ec
aa6da1f
4728f78
427b0b9
db0255b
0e8331f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ apiVersion: kind.x-k8s.io/v1alpha4 | |
name: armada-test | ||
featureGates: | ||
"KubeletInUserNamespace": true | ||
networking: | ||
apiServerAddress: 0.0.0.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is intentional. WIthout this the |
||
nodes: | ||
- role: worker | ||
image: kindest/node:v1.26.15 | ||
|
@@ -28,3 +30,4 @@ nodes: | |
- containerPort: 6443 # control plane | ||
hostPort: 6443 # exposes control plane on localhost:6443 | ||
protocol: TCP | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE jobs ADD COLUMN bid_price double precision NOT NULL DEFAULT 0; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is intentional. The run config for the executor is incorrect as
internal
will attempt to connect via the kind network, which won't work from Goland.external
will attempt to connect on loclahost which is correct.