-
Notifications
You must be signed in to change notification settings - Fork 90
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
Runner config from the CLI #1014
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
e09e5b4
Runner config from the CLI
andreaTP c2724ff
remove failing tests
andreaTP 094622f
runner-config
andreaTP 57d0f36
missing headers
andreaTP f1e7aa3
fmt
andreaTP 4fa8122
aggregate runner-config
andreaTP bfc3486
fix volume mount name
andreaTP 3cb6adc
no nitpicks
andreaTP e175602
no nitpicks part 2
andreaTP 70994bc
backward compat note
andreaTP b66b3d4
cluster in topic is optional
andreaTP 580f11c
default to None
andreaTP 61348cc
final
andreaTP 296f5a9
train graalvm again
andreaTP 0311f3c
minor
andreaTP eb349c9
renaming val to avoid compiler go nuts
andreaTP b77ae8a
graalvm volume mount
andreaTP File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -27,21 +27,31 @@ trait RunnerConfigResolver { | |
final val ConfigSecretMountPath = "/etc/cloudflow-runner-secret" | ||
final val SecretConfigFile = "secret.conf" | ||
|
||
def backwardsCompatConfig(configPath: Path): Path = | ||
if (Files.exists(configPath)) { | ||
configPath | ||
} else { | ||
// Backward compatibility: Use the ConfigMap populated by the operator | ||
Paths.get(s"$ConfigMountPath/$ConfigFile") | ||
} | ||
|
||
def makeConfig: Try[Config] = Try { | ||
val configFilePathString = Option(System.getProperty("config.file")).getOrElse(s"$ConfigMountPath/$ConfigFile") | ||
val configFilePathString = Option(System.getProperty("config.file")).getOrElse(s"$ConfigSecretMountPath/$ConfigFile") | ||
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 slightly confusing, maybe we can chat. |
||
val configPath = Paths.get(configFilePathString) | ||
val secretPath = Paths.get(s"$ConfigSecretMountPath/$SecretConfigFile") | ||
|
||
val applicationConfig = backwardsCompatConfig(configPath) | ||
|
||
val config = if (Files.exists(secretPath)) { | ||
println(s"Loading application.conf from: $configPath, secret config from: $secretPath") | ||
println(s"Loading application.conf from: $applicationConfig, secret config from: $secretPath") | ||
// secret takes precedence, since it contains config. | ||
loadConfig(secretPath) | ||
.withFallback(loadConfig(configPath)) | ||
.withFallback(loadConfig(applicationConfig)) | ||
.withFallback(ConfigFactory.load) | ||
} else { | ||
println(s"Loading application.conf from: $configPath") | ||
println(s"Loading application.conf from: $applicationConfig") | ||
|
||
loadConfig(configPath) | ||
loadConfig(applicationConfig) | ||
.withFallback(ConfigFactory.load) | ||
} | ||
|
||
|
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
103 changes: 0 additions & 103 deletions
103
.../cloudflow-blueprint/src/test/scala/cloudflow/blueprint/deployment/RunnerConfigSpec.scala
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Let's chat about tools / core again ;-)
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.
back to the
core
!