{"id":320,"date":"2021-12-08T23:57:41","date_gmt":"2021-12-08T22:57:41","guid":{"rendered":"http:\/\/daisy-street.fr\/?p=320"},"modified":"2021-12-13T01:19:47","modified_gmt":"2021-12-13T00:19:47","slug":"ajout-pod-heimdall-node","status":"publish","type":"post","link":"https:\/\/daisy-street.fr\/index.php\/2021\/12\/08\/ajout-pod-heimdall-node\/","title":{"rendered":"Ajout pod heimdall-node"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">deployement<\/h2>\n\n\n\n<p>La commande docker avec le filesystem prepar\u00e9<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker run -d \\\n  --name=heimdall \\\n  -e PUID=1000 \\\n  -e PGID=1000 \\\n  -e TZ=Europe\/London \\\n  -p 80:80 \\\n  -p 443:443 \\\n  -v &lt;\/path\/to\/appdata\/config&gt;:\/config \\\n  --restart unless-stopped \\\n  lscr.io\/linuxserver\/heimdall<\/code><\/pre>\n\n\n\n<p>traduction en kubernetes deploy :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apiVersion: apps\/v1\nkind: Deployment\nmetadata:\n  name: heimdallserver \n  namespace: default\n  labels:\n    app: heimdall\nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      app: heimdall\n  template:\n    metadata:\n      labels:\n        run: heimdallserver \n        app: heimdall\n    spec:\n      containers:\n      - name: heimdallserver \n        image: lscr.io\/linuxserver\/heimdall\n        env:\n          - name: \"UID\"\n            value: \"1000\"\n          - name: \"GID\"\n            value: \"100\"  \n        ports:\n        - containerPort: 80\n          name: heimdall-http\n        - containerPort: 443\n          name: heimdall-https\n        volumeMounts:\n        - mountPath: \/config\n          name: heimdall-config\n      volumes:\n      - name: heimdall-config\n        hostPath:\n          type: DirectoryOrCreate\n          path: \/usr\/kubedata\/heimdallserver\/config\n---\napiVersion: v1\nkind: Service\nmetadata:\n  name: heimdall-svc\nspec:\n  selector:\n    app: heimdall\n  ports:\n    - name: http\n      port: 80\n      targetPort: 80\n      nodePort: 32501\n    - name: https\n      port: 443\n      targetPort: 443\n  type: NodePort<\/code><\/pre>\n\n\n\n<p>puis on recupere le port d\u2019exposition<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>kubectl get all --all-namespaces | grep heimdall<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"84\" data-attachment-id=\"323\" data-permalink=\"https:\/\/daisy-street.fr\/index.php\/2021\/12\/08\/ajout-pod-heimdall-node\/image-6-3\/\" data-orig-file=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6.png\" data-orig-size=\"1093,90\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-6\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6-300x25.png\" data-large-file=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6-1024x84.png\" src=\"http:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6-1024x84.png\" alt=\"\" class=\"wp-image-323\" srcset=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6-1024x84.png 1024w, https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6-300x25.png 300w, https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6-768x63.png 768w, https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-6.png 1093w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/figure>\n\n\n\n<p>resultat le dashboard est accecible https:\/\/&lt;master-ip&gt;:32501<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"897\" data-attachment-id=\"325\" data-permalink=\"https:\/\/daisy-street.fr\/index.php\/2021\/12\/08\/ajout-pod-heimdall-node\/image-7-3\/\" data-orig-file=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7.png\" data-orig-size=\"1061,929\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-7\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7-300x263.png\" data-large-file=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7-1024x897.png\" src=\"http:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7-1024x897.png\" alt=\"\" class=\"wp-image-325\" srcset=\"https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7-1024x897.png 1024w, https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7-300x263.png 300w, https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7-768x672.png 768w, https:\/\/daisy-street.fr\/wp-content\/uploads\/2021\/12\/image-7.png 1061w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>deployement La commande docker avec le filesystem prepar\u00e9 traduction en kubernetes deploy : puis on recupere le port d\u2019exposition resultat le dashboard est accecible https:\/\/&lt;master-ip&gt;:32501<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false},"version":2}},"categories":[1],"tags":[45,20,48,33,9],"class_list":["post-320","post","type-post","status-publish","format-standard","hentry","category-non-classe","tag-dashboard","tag-docker","tag-heimdall","tag-kubernetes","tag-serveur"],"jetpack_publicize_connections":[],"featured_image_src":null,"author_info":{"display_name":"admin9483","author_link":"https:\/\/daisy-street.fr\/index.php\/author\/admin9483\/"},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/posts\/320","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/comments?post=320"}],"version-history":[{"count":5,"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/posts\/320\/revisions"}],"predecessor-version":[{"id":342,"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/posts\/320\/revisions\/342"}],"wp:attachment":[{"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/media?parent=320"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/categories?post=320"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/daisy-street.fr\/index.php\/wp-json\/wp\/v2\/tags?post=320"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}