-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Agent Minio Credential for Sensor Agent (#4235)
Signed-off-by: Future Outlier <[email protected]> Signed-off-by: Future-Outlier <[email protected]> Co-authored-by: Future Outlier <[email protected]>
- Loading branch information
1 parent
a8d9efe
commit d156585
Showing
5 changed files
with
33 additions
and
7 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,6 @@ helmCharts: | |
namespace: flyte | ||
resources: | ||
- ../namespace.yaml | ||
|
||
patchesStrategicMerge: | ||
- patch.yaml |
17 changes: 17 additions & 0 deletions
17
docker/sandbox-bundled/kustomize/complete-agent/patch.yaml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: flyteagent | ||
namespace: flyte | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: flyteagent | ||
env: | ||
- name: FLYTE_AWS_ENDPOINT | ||
value: http://flyte-sandbox-minio.flyte:9000 | ||
- name: FLYTE_AWS_ACCESS_KEY_ID | ||
value: minio | ||
- name: FLYTE_AWS_SECRET_ACCESS_KEY | ||
value: miniostorage |
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