Icinga / Icinga/icinga-powershell-framework

Can't use private IcingaRepository

Open
#474 12 comments 0 reactions 1 assignee View on GitHub

@LordHepipud is already working on this.

Since Feb 10, 2022.

Documentation
Dominant language
PowerShell
Stars
87
Forks
34
PR merge metrics
No merged PRs in 30d

Description

Hello,

When we try to install icinga for windows with a private repo of Icinga, the installation still try to use the default repository.

Can you help us with this process ?

Expected Behavior

Install Icinga with our private repository.
Following the documentation of Automated installation with InstallCommand and own IcingaRepository

Current Behavior

When trying to install Icinga for Windows in offline mode, it still try to download from the internet.

Steps to Reproduce (for bugs)

  1. Create a sync repository on a windows server with ;
Sync-IcingaRepository `
    -Name 'Icinga Stable Local' `
    -Path 'E:\Repo_icinga\icinga_stable' `
    -RemotePath '\\WINSERVER\Repo_icinga\icinga_stable' `
    -Source 'https://packages.icinga.com/IcingaForWindows/stable'

And make sure it's enable:
Enable-IcingaRepository -Name 'Icinga Stable Local'

  1. Set the permission of the shared folder Repo_icinga

  2. Create a powershell script based on the one on the installation page:

[Net.ServicePointManager]::SecurityProtocol = 'tls12, tls11';
$ProgressPreference                         = 'SilentlyContinue';
[string]$ScriptFile                         = 'C:\Users\Public\IcingaForWindows.ps1';

Invoke-WebRequest `
    -UseBasicParsing `
    -Uri '\\WINSERVER\Repo_icinga\IcingaForWindows.ps1' `
    -OutFile $ScriptFile;

& $ScriptFile `
    -ModuleDirectory 'C:\Program Files\WindowsPowerShell\Modules\' `
    -InstallCommand '{"IfW-DirectorSelfServiceKey":{"Values":["AAAAABBBBCCCCCDDDDD"]},"IfW-DirectorUrl":{"Values":["http://ICINGA_SERVER/icingaweb2/director"]}}' `
    -IcingaRepository '\\WINSERVER\Repo_icinga\icinga_stable\ifw.repo.json';
  1. On another server we execute the script.

It download and launch correctly the IcingaForWindows.ps1.

But then try to download on the internet:
image

Context

We have a bunch of server without internet connection and therefore can't be added to our monitoring system.

Thank you for your help.

Your Environment

  • PowerShell Version used : 5.1
  • Operating System and version: Windows server 2016
  • Latest version of Icinga as of today (10/02)

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.