phpIPAM Action
ActionsTags
(2)This action start a complete phpIPAM instance for api testing purpose in github workflows. 
In detail the action start two containers:
- a mariadb container with a phpipam database
 - a phpipam container with a phpipam installation
 
After that the action does a few things to prepare the phpipam installation:
- populate the database with default data
 - activate the api
 - create an app for api connection
 - set required password change for defaut admin to no - this is for local testing purposes
 
We provide the following parameters to configure the phpipam instance database:
- ipam_version: the phpipam version to install: Default: "latest"
 - ipam_database_host: Database host phpipam connects to. Default: "database"
 - ipam_database_user: Database user phpipam needs to authenticate. Default: "phpipam"
 - ipam_database_pass: Database password phpipam needs to authenticate. Default: "phpipam"
 - ipam_database_name: Database name phpipam uses. Default: "phpipam"
 - database_root_password: Root password for the database. Default: "root"
 
Note: If you define a database host, the database (ipam_database_name) needs to be created or emptied before the action can be executed.
The action is hosted in a separate repository and available on github marketplace. To use it you have to add the following to your github workflow:
steps:
  - uses: actions/checkout@v2
  - uses: codeaffen/phpipam-action@v2
    with:
      ipam_version: "1.4x"If the action finishes successfully you will be able to run your api tests against the phpipam installation.
- name: "Test phpipam api"
  run: |
    curl -k --user Admin:ipamadmin -X POST https://localhost/api/ansible/user/With the ipam_version parameter you will be able to test against different phpipam versions by using githubs build matrix feature. This is done by defining a job as follows:
jobs:
  matrix_test:
    strategy:
      matrix:
        phpipam: ['1.4x','1.5x']
    steps:
      - uses: actions/checkout@v2
      - name: run phpipam-action
        uses: codeaffen/phpipam-action@v2
        with:
          ipam_version: ${{ matrix.phpipam }}phpIPAM Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.