feat: kubernetes manifests to deploy a minimum ArmoniK installation#167
Draft
aneojgurhem wants to merge 1 commit into
Draft
feat: kubernetes manifests to deploy a minimum ArmoniK installation#167aneojgurhem wants to merge 1 commit into
aneojgurhem wants to merge 1 commit into
Conversation
Contributor
lemaitre-aneo
left a comment
There was a problem hiding this comment.
I would prefer a single manifest. This would be simpler to do with aneoconsulting/ArmoniK.Core#766
| - containerPort: 1080 | ||
| name: submitter | ||
| # docker inspect armonik.control.submitter | jq -r '.[].Config.Env | map(split("=") | {name:.[0], value:.[1]})' | yq -P | ||
| env: |
Contributor
There was a problem hiding this comment.
I would use a core-configmap
Comment on lines
+79
to
+110
| set $seq_upstream http://10.43.150.249:8080; | ||
| location = /seq { | ||
| rewrite ^ $scheme://$http_host/seq/ permanent; | ||
| } | ||
| location /seq/ { | ||
| proxy_set_header Host $http_host; | ||
| proxy_set_header Accept-Encoding ""; | ||
| rewrite ^/seq/(.*) /$1 break; | ||
| proxy_pass $seq_upstream$uri$is_args$args; | ||
| sub_filter '<head>' '<head><base href="${scheme}://${http_host}/seq/">'; | ||
| sub_filter_once on; | ||
| proxy_hide_header content-security-policy; | ||
| } | ||
| set $grafana_upstream http://10.43.130.56:3000; | ||
| location = /grafana { | ||
| rewrite ^ $scheme://$http_host/grafana/ permanent; | ||
| } | ||
| location /grafana/ { | ||
| rewrite ^/grafana/(.*) /$1 break; | ||
| proxy_set_header Host $http_host; | ||
| proxy_pass $grafana_upstream$uri$is_args$args; | ||
| sub_filter '<head>' '<head><base href="${scheme}://${http_host}/grafana/">'; | ||
| sub_filter_once on; | ||
| proxy_intercept_errors on; | ||
| error_page 301 302 307 =302 ${scheme}://${http_host}${upstream_http_location}; | ||
| } | ||
| location /grafana/api/live { | ||
| rewrite ^/grafana/(.*) /$1 break; | ||
| proxy_http_version 1.1; | ||
| proxy_set_header Host $http_host; | ||
| proxy_pass $grafana_upstream$uri$is_args$args; | ||
| } |
Contributor
There was a problem hiding this comment.
You could remove this, or put the domain names if you want to keep it.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.