XCP-ng
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. bvivi57
    3. Posts
    B
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 7
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: [ARTICLE][XCP-NG][XO] Avis et retours sur le tutorial

      @scls19fr Merci pour ton retours !
      J'ai moi meme eu des soucis d'installation sur un de mes tiny concernant la conf bios. Effectivement, il faut virer le secur boot. Je vais mettre l'article à jour.
      Pour les template, de mon coté je prépare un tuto sous terraform pour déployer un OS à partir d'un template...faut que je finisse l'article...

      posted in French (Français)
      B
      bvivi57
    • RE: [ARTICLE][XCP-NG][XO] Avis et retours sur le tutorial

      La suite de l'article incluant des benchmark comparatifs avec VMware est disponible ici
      suite de l'article

      posted in French (Français)
      B
      bvivi57
    • RE: Unable to clone my template's disk

      @AtaxyaNetwork
      Hi thank you for your help.

      I was finally able to solve the problem.
      In fact, it's simply that during deployment, the VM ends up with the boot firmware option set to “bios”, whereas my template is originally in uefi.

      I simply added “hvm_boot_firmware” to uefi in my terraform resource “xenorchestra_vm”.... and that's it!

      posted in Infrastructure as Code
      B
      bvivi57
    • RE: Unable to clone my template's disk

      Here is my template

      template

      posted in Infrastructure as Code
      B
      bvivi57
    • RE: Unable to clone my template's disk

      @AtaxyaNetwork
      Hi
      Thanks for your help

      My value is

      variable "xoa_template" {
        default = "prdtpllin502"
      }
      
      posted in Infrastructure as Code
      B
      bvivi57
    • Unable to clone my template's disk

      Hi, thank for your work. I'm starting with XCP-ng and Xen Orchestra. I'm trying to clone a template to create a new VM.

      I first imported a VM from VMware, then I converted this VM into a template under Xen Orchestra .

      I'm now trying to clone this template with Terraform. The VM deploys but without OS installed, and the VM remains stuck at boot.

      I have the impression that the disk is not recovered from the template (which is the case when I create a new VM from this template via the XO GUI).

      Here's my file

      data "xenorchestra_pool" "pool" {
        name_label = "${var.xoa_pool}"
      }
      
      data "xenorchestra_template" "template" {
        name_label = "${var.xoa_template}"
      }
      
      data "xenorchestra_network" "net" {
        name_label = "${var.vlan_lan}"
      }
      
      data "xenorchestra_sr" "default" {
        name_label = "${var.vm_02_dts}"
        pool_id = data.xenorchestra_pool.pool.id
      }
      
      
      resource "xenorchestra_vm" "bar" {
        memory_max       = "${var.vm_02_memory_size}"
        cpus             = "${var.vm_02_cpu_number}"
        name_label       = "${var.vm_02_name}"
        template         = data.xenorchestra_template.template.id
      
      
        network {
          network_id = data.xenorchestra_network.net.id
        }
      
        disk {
          sr_id      = data.xenorchestra_sr.default.id
          name_label = "[ESXI]prdtpllin501-flat.vmdk"
          size       = 32212254720
        }
      
      
        // Override the default create timeout from 5 mins to 20.
        timeouts {
          create = "20m"
        }
      
       
      }
      

      Is this normal or am I using the provider incorrectly?
      Thanks

      posted in Infrastructure as Code
      B
      bvivi57
    • [ARTICLE][XCP-NG][XO] Avis et retours sur le tutorial

      Bonjour

      Je découvre XCP-ng et XO et j'ai décidé de partager mon experience sur mon blog technique.
      J'aimerais avoir l'avis de la communauté sur ce qui j'ai pu expliquer et dire sur le sujet pour éventuellement corriger/ajuster ce que j'aurais pu rater.

      L'article est disponible ici et sera poursuivi d'ici peu
      [https://www.myprivatelab.tech/xcp_lab_installation](link url)

      Merci

      posted in French (Français)
      B
      bvivi57