Juju bundle reference for customizing canonical-kubernetes bundle.yaml manifesthow to decipher a bundle from jujuCan juju add-machine be used to prepare a machine for service deployment?Add Nodes to MAAS for JUJU BundleCan bundle https://jujucharms.com/openstack-base/39 be used for ppc64el environmentOpenstack juju yaml field explanationsConfiguring juju for MAAS 2.0How to reference Controller / Bootstrap node in a bundleopenstack trusty:liberty deployment fails due to no relations and insufficient peer unitsJuju bootstrap on MaaSJuJu / Landscape OpenStack Install - No network listing for Open vSwitch

How does one intimidate enemies without having the capacity for violence?

What defenses are there against being summoned by the Gate spell?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

Can divisibility rules for digits be generalized to sum of digits

What do you call a Matrix-like slowdown and camera movement effect?

Why not use SQL instead of GraphQL?

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

"You are your self first supporter", a more proper way to say it

Today is the Center

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

What is the word for reserving something for yourself before others do?

Smoothness of finite-dimensional functional calculus

How to format long polynomial?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Arthur Somervell: 1000 Exercises - Meaning of this notation

How much RAM could one put in a typical 80386 setup?

Dragon forelimb placement

Are the number of citations and number of published articles the most important criteria for a tenure promotion?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

What does CI-V stand for?

Can I ask the recruiters in my resume to put the reason why I am rejected?

How do I create uniquely male characters?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

Which models of the Boeing 737 are still in production?



Juju bundle reference for customizing canonical-kubernetes bundle.yaml manifest


how to decipher a bundle from jujuCan juju add-machine be used to prepare a machine for service deployment?Add Nodes to MAAS for JUJU BundleCan bundle https://jujucharms.com/openstack-base/39 be used for ppc64el environmentOpenstack juju yaml field explanationsConfiguring juju for MAAS 2.0How to reference Controller / Bootstrap node in a bundleopenstack trusty:liberty deployment fails due to no relations and insufficient peer unitsJuju bootstrap on MaaSJuJu / Landscape OpenStack Install - No network listing for Open vSwitch






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















For context, the cloud provider I'm using for this project is MaaS. I'm not sure if that will have any bearing on the answers to my question, but if that is important context, please answer under the maas context.



I'm brand new to juju. The canonical-kubernetes is the charm I'm using. I'd like to customize the bundle for our particular need.



https://docs.jujucharms.com/2.5/en/reference-bundle is great! The top of the document states: This reference page applies to non-Kubernetes bundles only and that reference document has seemingly no help to me for the bundle.yaml I'm working on.



  1. What is the difference between a "normal" bundle deployment vs a "kubernetes" bundle deployment?

  2. The canonical-kubernetes deployment is deploying machines but the yaml manifests places the resources under the services object. There are seemingly no document references on this difference.

  3. I'm specifically looking for how to do things like tag machines, run cloud-init on a per-machine basis, and other various machine things.

The googs got me this link https://pythonhosted.org/juju-deployer/config.html but I don't think that's accurate for me needs either.



I've also opened issues:



https://github.com/juju-solutions/bundle-canonical-kubernetes



https://github.com/juju/docs



series: bionic
description: A highly-available, production-grade Kubernetes cluster.
services:
easyrsa:
annotations:
gui-x: '450'
gui-y: '550'
charm: cs:~containers/easyrsa-231
constraints: root-disk=8G
num_units: 1
machine:
tags:
- easyrsa
resources:
easyrsa: 5
etcd:
annotations:
gui-x: '800'
gui-y: '550'
charm: cs:~containers/etcd-411
constraints: root-disk=8G
num_units: 3
options:
channel: 3.2/stable
machine:
tags:
- etcd
resources:
etcd: 3
snapshot: 0
flannel:
annotations:
gui-x: '450'
gui-y: '750'
charm: cs:~containers/flannel-398
resources:
flannel-amd64: 108
flannel-arm64: 108
flannel-s390x: 94
kubeapi-load-balancer:
annotations:
gui-x: '450'
gui-y: '250'
charm: cs:~containers/kubeapi-load-balancer-617
constraints: root-disk=8G
expose: true
num_units: 1
machine:
tags:
- kubeapi-lb
resources:
kubernetes-master:
annotations:
gui-x: '800'
gui-y: '850'
charm: cs:~containers/kubernetes-master-642
constraints: cores=2 mem=4G root-disk=16G
num_units: 2
options:
channel: 1.14/stable
series: xenial
machine:
tags:
- kubernetes master
resources:
cdk-addons: 0
kube-apiserver: 0
kube-controller-manager: 0
kube-proxy: 0
kube-scheduler: 0
kubectl: 0
cloudinit-userdata: |
runcmd: |
#!/bin/bash
<SCRIPT THINGS>
kubernetes-worker:
annotations:
gui-x: '100'
gui-y: '850'
charm: cs:~containers/kubernetes-worker-508
constraints: cores=4 mem=4G root-disk=16G
expose: true
num_units: 3
options:
channel: 1.14/stable
series: xenial
machine:
tags:
- kubernetes worker
resources:
cni-amd64: 118
cni-arm64: 110
cni-s390x: 115
kube-proxy: 0
kubectl: 0
kubelet: 0
nfs-server:
num_units: 1
storage_root: /nfsvol
expose: true
charm: cs:nfs-9
constraints: cores=2 mem=4G
machine:
tags:
- nfs server
envExport:
services:
easyrsa:
to: 0
etcd:
to: 1
kubernetes-master:
to: 2
kubernetes-worker:
to: 3
kubeapi-load-balancer:
to: 4
nfs-server:
to: 5
relations:
- - kubernetes-master:kube-api-endpoint
- kubeapi-load-balancer:apiserver
- - kubernetes-master:loadbalancer
- kubeapi-load-balancer:loadbalancer
- - kubernetes-master:kube-control
- kubernetes-worker:kube-control
- - kubernetes-master:certificates
- easyrsa:client
- - nfs-server:nfs
- kubernetes-worker:nfs
- - etcd:certificates
- easyrsa:client
- - kubernetes-master:etcd
- etcd:db
- - kubernetes-worker:certificates
- easyrsa:client
- - kubernetes-worker:kube-api-endpoint
- kubeapi-load-balancer:website
- - kubeapi-load-balancer:certificates
- easyrsa:client
- - flannel:etcd
- etcd:db
- - flannel:cni
- kubernetes-master:cni
- - flannel:cni
- kubernetes-worker:cni








share









New contributor




Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    0















    For context, the cloud provider I'm using for this project is MaaS. I'm not sure if that will have any bearing on the answers to my question, but if that is important context, please answer under the maas context.



    I'm brand new to juju. The canonical-kubernetes is the charm I'm using. I'd like to customize the bundle for our particular need.



    https://docs.jujucharms.com/2.5/en/reference-bundle is great! The top of the document states: This reference page applies to non-Kubernetes bundles only and that reference document has seemingly no help to me for the bundle.yaml I'm working on.



    1. What is the difference between a "normal" bundle deployment vs a "kubernetes" bundle deployment?

    2. The canonical-kubernetes deployment is deploying machines but the yaml manifests places the resources under the services object. There are seemingly no document references on this difference.

    3. I'm specifically looking for how to do things like tag machines, run cloud-init on a per-machine basis, and other various machine things.

    The googs got me this link https://pythonhosted.org/juju-deployer/config.html but I don't think that's accurate for me needs either.



    I've also opened issues:



    https://github.com/juju-solutions/bundle-canonical-kubernetes



    https://github.com/juju/docs



    series: bionic
    description: A highly-available, production-grade Kubernetes cluster.
    services:
    easyrsa:
    annotations:
    gui-x: '450'
    gui-y: '550'
    charm: cs:~containers/easyrsa-231
    constraints: root-disk=8G
    num_units: 1
    machine:
    tags:
    - easyrsa
    resources:
    easyrsa: 5
    etcd:
    annotations:
    gui-x: '800'
    gui-y: '550'
    charm: cs:~containers/etcd-411
    constraints: root-disk=8G
    num_units: 3
    options:
    channel: 3.2/stable
    machine:
    tags:
    - etcd
    resources:
    etcd: 3
    snapshot: 0
    flannel:
    annotations:
    gui-x: '450'
    gui-y: '750'
    charm: cs:~containers/flannel-398
    resources:
    flannel-amd64: 108
    flannel-arm64: 108
    flannel-s390x: 94
    kubeapi-load-balancer:
    annotations:
    gui-x: '450'
    gui-y: '250'
    charm: cs:~containers/kubeapi-load-balancer-617
    constraints: root-disk=8G
    expose: true
    num_units: 1
    machine:
    tags:
    - kubeapi-lb
    resources:
    kubernetes-master:
    annotations:
    gui-x: '800'
    gui-y: '850'
    charm: cs:~containers/kubernetes-master-642
    constraints: cores=2 mem=4G root-disk=16G
    num_units: 2
    options:
    channel: 1.14/stable
    series: xenial
    machine:
    tags:
    - kubernetes master
    resources:
    cdk-addons: 0
    kube-apiserver: 0
    kube-controller-manager: 0
    kube-proxy: 0
    kube-scheduler: 0
    kubectl: 0
    cloudinit-userdata: |
    runcmd: |
    #!/bin/bash
    <SCRIPT THINGS>
    kubernetes-worker:
    annotations:
    gui-x: '100'
    gui-y: '850'
    charm: cs:~containers/kubernetes-worker-508
    constraints: cores=4 mem=4G root-disk=16G
    expose: true
    num_units: 3
    options:
    channel: 1.14/stable
    series: xenial
    machine:
    tags:
    - kubernetes worker
    resources:
    cni-amd64: 118
    cni-arm64: 110
    cni-s390x: 115
    kube-proxy: 0
    kubectl: 0
    kubelet: 0
    nfs-server:
    num_units: 1
    storage_root: /nfsvol
    expose: true
    charm: cs:nfs-9
    constraints: cores=2 mem=4G
    machine:
    tags:
    - nfs server
    envExport:
    services:
    easyrsa:
    to: 0
    etcd:
    to: 1
    kubernetes-master:
    to: 2
    kubernetes-worker:
    to: 3
    kubeapi-load-balancer:
    to: 4
    nfs-server:
    to: 5
    relations:
    - - kubernetes-master:kube-api-endpoint
    - kubeapi-load-balancer:apiserver
    - - kubernetes-master:loadbalancer
    - kubeapi-load-balancer:loadbalancer
    - - kubernetes-master:kube-control
    - kubernetes-worker:kube-control
    - - kubernetes-master:certificates
    - easyrsa:client
    - - nfs-server:nfs
    - kubernetes-worker:nfs
    - - etcd:certificates
    - easyrsa:client
    - - kubernetes-master:etcd
    - etcd:db
    - - kubernetes-worker:certificates
    - easyrsa:client
    - - kubernetes-worker:kube-api-endpoint
    - kubeapi-load-balancer:website
    - - kubeapi-load-balancer:certificates
    - easyrsa:client
    - - flannel:etcd
    - etcd:db
    - - flannel:cni
    - kubernetes-master:cni
    - - flannel:cni
    - kubernetes-worker:cni








    share









    New contributor




    Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      0












      0








      0








      For context, the cloud provider I'm using for this project is MaaS. I'm not sure if that will have any bearing on the answers to my question, but if that is important context, please answer under the maas context.



      I'm brand new to juju. The canonical-kubernetes is the charm I'm using. I'd like to customize the bundle for our particular need.



      https://docs.jujucharms.com/2.5/en/reference-bundle is great! The top of the document states: This reference page applies to non-Kubernetes bundles only and that reference document has seemingly no help to me for the bundle.yaml I'm working on.



      1. What is the difference between a "normal" bundle deployment vs a "kubernetes" bundle deployment?

      2. The canonical-kubernetes deployment is deploying machines but the yaml manifests places the resources under the services object. There are seemingly no document references on this difference.

      3. I'm specifically looking for how to do things like tag machines, run cloud-init on a per-machine basis, and other various machine things.

      The googs got me this link https://pythonhosted.org/juju-deployer/config.html but I don't think that's accurate for me needs either.



      I've also opened issues:



      https://github.com/juju-solutions/bundle-canonical-kubernetes



      https://github.com/juju/docs



      series: bionic
      description: A highly-available, production-grade Kubernetes cluster.
      services:
      easyrsa:
      annotations:
      gui-x: '450'
      gui-y: '550'
      charm: cs:~containers/easyrsa-231
      constraints: root-disk=8G
      num_units: 1
      machine:
      tags:
      - easyrsa
      resources:
      easyrsa: 5
      etcd:
      annotations:
      gui-x: '800'
      gui-y: '550'
      charm: cs:~containers/etcd-411
      constraints: root-disk=8G
      num_units: 3
      options:
      channel: 3.2/stable
      machine:
      tags:
      - etcd
      resources:
      etcd: 3
      snapshot: 0
      flannel:
      annotations:
      gui-x: '450'
      gui-y: '750'
      charm: cs:~containers/flannel-398
      resources:
      flannel-amd64: 108
      flannel-arm64: 108
      flannel-s390x: 94
      kubeapi-load-balancer:
      annotations:
      gui-x: '450'
      gui-y: '250'
      charm: cs:~containers/kubeapi-load-balancer-617
      constraints: root-disk=8G
      expose: true
      num_units: 1
      machine:
      tags:
      - kubeapi-lb
      resources:
      kubernetes-master:
      annotations:
      gui-x: '800'
      gui-y: '850'
      charm: cs:~containers/kubernetes-master-642
      constraints: cores=2 mem=4G root-disk=16G
      num_units: 2
      options:
      channel: 1.14/stable
      series: xenial
      machine:
      tags:
      - kubernetes master
      resources:
      cdk-addons: 0
      kube-apiserver: 0
      kube-controller-manager: 0
      kube-proxy: 0
      kube-scheduler: 0
      kubectl: 0
      cloudinit-userdata: |
      runcmd: |
      #!/bin/bash
      <SCRIPT THINGS>
      kubernetes-worker:
      annotations:
      gui-x: '100'
      gui-y: '850'
      charm: cs:~containers/kubernetes-worker-508
      constraints: cores=4 mem=4G root-disk=16G
      expose: true
      num_units: 3
      options:
      channel: 1.14/stable
      series: xenial
      machine:
      tags:
      - kubernetes worker
      resources:
      cni-amd64: 118
      cni-arm64: 110
      cni-s390x: 115
      kube-proxy: 0
      kubectl: 0
      kubelet: 0
      nfs-server:
      num_units: 1
      storage_root: /nfsvol
      expose: true
      charm: cs:nfs-9
      constraints: cores=2 mem=4G
      machine:
      tags:
      - nfs server
      envExport:
      services:
      easyrsa:
      to: 0
      etcd:
      to: 1
      kubernetes-master:
      to: 2
      kubernetes-worker:
      to: 3
      kubeapi-load-balancer:
      to: 4
      nfs-server:
      to: 5
      relations:
      - - kubernetes-master:kube-api-endpoint
      - kubeapi-load-balancer:apiserver
      - - kubernetes-master:loadbalancer
      - kubeapi-load-balancer:loadbalancer
      - - kubernetes-master:kube-control
      - kubernetes-worker:kube-control
      - - kubernetes-master:certificates
      - easyrsa:client
      - - nfs-server:nfs
      - kubernetes-worker:nfs
      - - etcd:certificates
      - easyrsa:client
      - - kubernetes-master:etcd
      - etcd:db
      - - kubernetes-worker:certificates
      - easyrsa:client
      - - kubernetes-worker:kube-api-endpoint
      - kubeapi-load-balancer:website
      - - kubeapi-load-balancer:certificates
      - easyrsa:client
      - - flannel:etcd
      - etcd:db
      - - flannel:cni
      - kubernetes-master:cni
      - - flannel:cni
      - kubernetes-worker:cni








      share









      New contributor




      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      For context, the cloud provider I'm using for this project is MaaS. I'm not sure if that will have any bearing on the answers to my question, but if that is important context, please answer under the maas context.



      I'm brand new to juju. The canonical-kubernetes is the charm I'm using. I'd like to customize the bundle for our particular need.



      https://docs.jujucharms.com/2.5/en/reference-bundle is great! The top of the document states: This reference page applies to non-Kubernetes bundles only and that reference document has seemingly no help to me for the bundle.yaml I'm working on.



      1. What is the difference between a "normal" bundle deployment vs a "kubernetes" bundle deployment?

      2. The canonical-kubernetes deployment is deploying machines but the yaml manifests places the resources under the services object. There are seemingly no document references on this difference.

      3. I'm specifically looking for how to do things like tag machines, run cloud-init on a per-machine basis, and other various machine things.

      The googs got me this link https://pythonhosted.org/juju-deployer/config.html but I don't think that's accurate for me needs either.



      I've also opened issues:



      https://github.com/juju-solutions/bundle-canonical-kubernetes



      https://github.com/juju/docs



      series: bionic
      description: A highly-available, production-grade Kubernetes cluster.
      services:
      easyrsa:
      annotations:
      gui-x: '450'
      gui-y: '550'
      charm: cs:~containers/easyrsa-231
      constraints: root-disk=8G
      num_units: 1
      machine:
      tags:
      - easyrsa
      resources:
      easyrsa: 5
      etcd:
      annotations:
      gui-x: '800'
      gui-y: '550'
      charm: cs:~containers/etcd-411
      constraints: root-disk=8G
      num_units: 3
      options:
      channel: 3.2/stable
      machine:
      tags:
      - etcd
      resources:
      etcd: 3
      snapshot: 0
      flannel:
      annotations:
      gui-x: '450'
      gui-y: '750'
      charm: cs:~containers/flannel-398
      resources:
      flannel-amd64: 108
      flannel-arm64: 108
      flannel-s390x: 94
      kubeapi-load-balancer:
      annotations:
      gui-x: '450'
      gui-y: '250'
      charm: cs:~containers/kubeapi-load-balancer-617
      constraints: root-disk=8G
      expose: true
      num_units: 1
      machine:
      tags:
      - kubeapi-lb
      resources:
      kubernetes-master:
      annotations:
      gui-x: '800'
      gui-y: '850'
      charm: cs:~containers/kubernetes-master-642
      constraints: cores=2 mem=4G root-disk=16G
      num_units: 2
      options:
      channel: 1.14/stable
      series: xenial
      machine:
      tags:
      - kubernetes master
      resources:
      cdk-addons: 0
      kube-apiserver: 0
      kube-controller-manager: 0
      kube-proxy: 0
      kube-scheduler: 0
      kubectl: 0
      cloudinit-userdata: |
      runcmd: |
      #!/bin/bash
      <SCRIPT THINGS>
      kubernetes-worker:
      annotations:
      gui-x: '100'
      gui-y: '850'
      charm: cs:~containers/kubernetes-worker-508
      constraints: cores=4 mem=4G root-disk=16G
      expose: true
      num_units: 3
      options:
      channel: 1.14/stable
      series: xenial
      machine:
      tags:
      - kubernetes worker
      resources:
      cni-amd64: 118
      cni-arm64: 110
      cni-s390x: 115
      kube-proxy: 0
      kubectl: 0
      kubelet: 0
      nfs-server:
      num_units: 1
      storage_root: /nfsvol
      expose: true
      charm: cs:nfs-9
      constraints: cores=2 mem=4G
      machine:
      tags:
      - nfs server
      envExport:
      services:
      easyrsa:
      to: 0
      etcd:
      to: 1
      kubernetes-master:
      to: 2
      kubernetes-worker:
      to: 3
      kubeapi-load-balancer:
      to: 4
      nfs-server:
      to: 5
      relations:
      - - kubernetes-master:kube-api-endpoint
      - kubeapi-load-balancer:apiserver
      - - kubernetes-master:loadbalancer
      - kubeapi-load-balancer:loadbalancer
      - - kubernetes-master:kube-control
      - kubernetes-worker:kube-control
      - - kubernetes-master:certificates
      - easyrsa:client
      - - nfs-server:nfs
      - kubernetes-worker:nfs
      - - etcd:certificates
      - easyrsa:client
      - - kubernetes-master:etcd
      - etcd:db
      - - kubernetes-worker:certificates
      - easyrsa:client
      - - kubernetes-worker:kube-api-endpoint
      - kubeapi-load-balancer:website
      - - kubeapi-load-balancer:certificates
      - easyrsa:client
      - - flannel:etcd
      - etcd:db
      - - flannel:cni
      - kubernetes-master:cni
      - - flannel:cni
      - kubernetes-worker:cni






      juju maas kubernetes





      share









      New contributor




      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share









      New contributor




      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share








      edited 4 secs ago







      Jim













      New contributor




      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 8 mins ago









      JimJim

      1012




      1012




      New contributor




      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Jim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Jim is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1131804%2fjuju-bundle-reference-for-customizing-canonical-kubernetes-bundle-yaml-manifest%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Jim is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Jim is a new contributor. Be nice, and check out our Code of Conduct.












          Jim is a new contributor. Be nice, and check out our Code of Conduct.











          Jim is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1131804%2fjuju-bundle-reference-for-customizing-canonical-kubernetes-bundle-yaml-manifest%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

          Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

          Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»