-
Notifications
You must be signed in to change notification settings - Fork 170
feat: rely solely on metadata name #2040
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
Merged
Changes from 22 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
2be2b14
feat: load id and name
j-zimnowoda 9ee40db
Merge remote-tracking branch 'origin/main' into load-ids-from-metadata
j-zimnowoda 08cda49
feat: remove name property from spec in fixtures
j-zimnowoda 79d07e6
feat: remove teamId property from spec in fixtures
j-zimnowoda 1da5efa
feat: remove id property from spec in fixtures
j-zimnowoda 8f83c8b
feat: add name property to spec while loading
j-zimnowoda 1184c55
feat: add name property to spec while loading
j-zimnowoda e18678d
Merge branch 'main' into APL-612
merll 9919042
Merge remote-tracking branch 'origin/main' into APL-612
j-zimnowoda daf1b4e
Merge remote-tracking branch 'origin/main' into APL-612
j-zimnowoda c2077d0
ci: ignore order changes while using dyff
j-zimnowoda cd4c4c8
feat: load name to spec for arrayItems
j-zimnowoda 4478eb3
feat: log sops errors
j-zimnowoda 2d3188b
feat: remove teamId, name, and id from spec
j-zimnowoda fd049e1
ci: remove old secret
j-zimnowoda 6d523ab
Merge branch 'main' into APL-612
j-zimnowoda c92ceb9
feat: use user name instead of user id
j-zimnowoda deed949
feat: use user name instead of user id
j-zimnowoda 6f754b2
ci: debug bootstrap tests/fixtures
j-zimnowoda 243cb20
ci: bootstrap tests fixtures
j-zimnowoda b99470e
ci: bootstrap tests fixtures
j-zimnowoda b1ca83d
Merge remote-tracking branch 'origin/APL-612' into APL-612
j-zimnowoda ae59a7b
fix: get user name from file name
j-zimnowoda 2478ee3
fix: wring user name
j-zimnowoda fcb38b8
test: add unit
j-zimnowoda d13a2f1
fix: rework
j-zimnowoda 258daf0
Merge branch 'main' into APL-612
j-zimnowoda 1f1a081
fix: rework
j-zimnowoda 8a648d8
Merge branch 'APL-612' of https://github.com/linode/apl-core into APL…
j-zimnowoda f5c8168
ci: fixtures for local dev
j-zimnowoda 33f30fb
fix: rework
j-zimnowoda bcb6a9a
Merge remote-tracking branch 'origin/main' into APL-612
j-zimnowoda c7972ec
test: update resource quota
j-zimnowoda fbb81cd
Merge remote-tracking branch 'origin/main' into APL-612
j-zimnowoda 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ core.yaml | |
*.sample | ||
.env | ||
env/status.yaml | ||
values-repo.yaml | ||
env/bootstrap.yaml | ||
values-repo.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
kind: AplApp | ||
metadata: | ||
name: apl-gitea-operator | ||
labels: {} | ||
spec: | ||
_rawValues: {} | ||
resources: | ||
operator: | ||
limits: | ||
cpu: '1' | ||
memory: 1Gi | ||
requests: | ||
cpu: 50m | ||
memory: 128Mi |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
kind: AplApp | ||
metadata: | ||
name: apl-harbor-operator | ||
labels: {} | ||
spec: | ||
_rawValues: {} | ||
resources: | ||
operator: | ||
limits: | ||
cpu: '1' | ||
memory: 1Gi | ||
requests: | ||
cpu: 50m | ||
memory: 128Mi |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
kind: AplApp | ||
metadata: | ||
name: apl-keycloak-operator | ||
labels: {} | ||
spec: | ||
_rawValues: {} | ||
resources: | ||
operator: | ||
limits: | ||
cpu: '1' | ||
memory: 1Gi | ||
requests: | ||
cpu: 50m | ||
memory: 128Mi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ spec: | |
requests: | ||
cpu: 100m | ||
memory: 200Mi | ||
_rawValues: {} |
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 |
---|---|---|
|
@@ -13,3 +13,5 @@ spec: | |
server: https://gitea.demo.eks.otomi.cloud | ||
github: {} | ||
provider: gitea | ||
username: otomi-admin | ||
trace: false |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
kind: AplApp | ||
metadata: | ||
name: external-dns | ||
labels: {} | ||
spec: | ||
logLevel: info | ||
resources: | ||
limits: | ||
cpu: 100m | ||
memory: 128Mi | ||
requests: | ||
cpu: 10m | ||
memory: 64Mi |
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.