-
Notifications
You must be signed in to change notification settings - Fork 0
feat: support scaling config for knative deployment types #179
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
Merged
oleksii-donets
merged 18 commits into
development
from
feature/161-scaling-knative-types
Mar 6, 2026
Merged
Changes from 9 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
7867b3b
feat: support scaling config for knative deployment types
oleksii-donets 11e8e09
feat: improvements
oleksii-donets 257d514
Merge branch 'development' into feature/161-scaling-knative-types
oleksii-donets 0c139a3
Merge branch 'development' into feature/161-scaling-knative-types
oleksii-donets 39854eb
refactor: flatten nested if-cases in scaling strategy handling
oleksii-donets e38597d
chore: fix PR comments
oleksii-donets b2eb3bf
chore: fix tests
oleksii-donets 76fd8b4
Merge branch 'development' into feature/161-scaling-knative-types
oleksii-donets 8d3a4aa
Merge branch 'development' into feature/161-scaling-knative-types
oleksii-donets 24dc564
Merge branch 'development' into feature/161-scaling-knative-types
oleksii-donets 153425d
refactor: move scaling from child deployment classes to base class
oleksii-donets 0df2519
refactor: replace V1.47 knative scaling migration with base table mig…
oleksii-donets cddd188
fix: address PR review comments - remove redundant annotations and ad…
oleksii-donets bd5f638
Merge development into feature/161-scaling-knative-types
oleksii-donets a554e5c
chore: delete local claude config .claude/settings.local.json
oleksii-donets 4f4be18
refactor: remove deprecated initialScale/minScale/maxScale fields
oleksii-donets 6b7d40d
Merge branch 'development' into feature/161-scaling-knative-types
oleksii-donets d234f5d
refactor: drop deprecated initial_scale/min_scale/max_scale columns
oleksii-donets 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
10 changes: 10 additions & 0 deletions
10
src/main/java/com/epam/aidial/deployment/manager/model/deployment/AdapterDeployment.java
This file contains hidden or 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 |
|---|---|---|
| @@ -1,9 +1,19 @@ | ||
| package com.epam.aidial.deployment.manager.model.deployment; | ||
|
|
||
| import com.epam.aidial.deployment.manager.model.Scaling; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Getter; | ||
| import lombok.NoArgsConstructor; | ||
| import lombok.Setter; | ||
| import lombok.experimental.SuperBuilder; | ||
| import org.jetbrains.annotations.Nullable; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| @SuperBuilder | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class AdapterDeployment extends Deployment { | ||
| @Nullable | ||
| private Scaling scaling; | ||
| } |
8 changes: 8 additions & 0 deletions
8
...ain/java/com/epam/aidial/deployment/manager/model/deployment/CreateAdapterDeployment.java
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,15 @@ | ||
| package com.epam.aidial.deployment.manager.model.deployment; | ||
|
|
||
| import com.epam.aidial.deployment.manager.model.Scaling; | ||
| import lombok.Getter; | ||
| import lombok.Setter; | ||
| import lombok.experimental.SuperBuilder; | ||
| import org.jetbrains.annotations.Nullable; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| @SuperBuilder | ||
| public class CreateAdapterDeployment extends CreateDeployment { | ||
| @Nullable | ||
| private Scaling scaling; | ||
| } |
8 changes: 8 additions & 0 deletions
8
...java/com/epam/aidial/deployment/manager/model/deployment/CreateInterceptorDeployment.java
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,15 @@ | ||
| package com.epam.aidial.deployment.manager.model.deployment; | ||
|
|
||
| import com.epam.aidial.deployment.manager.model.Scaling; | ||
| import lombok.Getter; | ||
| import lombok.Setter; | ||
| import lombok.experimental.SuperBuilder; | ||
| import org.jetbrains.annotations.Nullable; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| @SuperBuilder | ||
| public class CreateInterceptorDeployment extends CreateDeployment { | ||
| @Nullable | ||
| private Scaling scaling; | ||
| } |
This file contains hidden or 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
10 changes: 10 additions & 0 deletions
10
src/main/java/com/epam/aidial/deployment/manager/model/deployment/InterceptorDeployment.java
This file contains hidden or 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 |
|---|---|---|
| @@ -1,9 +1,19 @@ | ||
| package com.epam.aidial.deployment.manager.model.deployment; | ||
|
|
||
| import com.epam.aidial.deployment.manager.model.Scaling; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Getter; | ||
| import lombok.NoArgsConstructor; | ||
| import lombok.Setter; | ||
| import lombok.experimental.SuperBuilder; | ||
| import org.jetbrains.annotations.Nullable; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| @SuperBuilder | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class InterceptorDeployment extends Deployment { | ||
| @Nullable | ||
| private Scaling scaling; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.