Skip to content
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.

containeroo/netseption

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NetSeption

Introduction

NetSeption updates the IPv4 addresses from https://www.cloudflare.com/ips-v4 with the values in a yaml file. You must provide a dotted path where the key with with values is.
If there is a difference and the environment variable BRANCH is set, the script creates a branch and pushes the updated file. If no branch is set, it pushes directly to the master branch.

Requirements

  • GitLab
  • Python 3.7.3

Configration

In our repository you can find a yaml example.

NetSeption takes the following environment variables:

Variable Description Example
PATH_TO_FILE path to yaml file networkpolicies/cloudflare-networkset.yaml
KEY_PATH dotted path to the network range key in yaml file spec.nets
GITLAB_TOKEN token for authentication vTbFeqJYCY3sibBP7BZM
GITLAB_URL gitlab url https://gitlab.example.com
ASSIGNEES assignees for merge request. list of users, separated by comma alice,bob
PROJECT_ID id of project 123
BRANCH branch (if not set push direct to master branch) cloudflare/IPv4
COMMIT_MESSAGE commit message (default: update networkrange) update networkrange
MERGEREQUEST_TITLE merge request title (default: filename: update networkrequest ) networkset-cloudflare.yaml: update networkrange
SSL_VERIFY verify SSL certificates (default: true) true
LOGLEVEL Set loglevel (default: info) one of critical, error, warning, info, debug

GitLab

If you want to use NetSeption in a GitLab CI / CD job, you can use the follwing .gitlab-ci.yml as an example:

image:
  name: containeroo/netseption:latest
  entrypoint: [""]

stages:
  - netseption

netseption:
  stage: netseption
  only:
    - schedules
  script: python /app/netseption.py

In order to set the configration environment variables, go to your project (repository) containing the networkset. Go to Settings -> CI / CD -> Variabels -> Expand.

After you have set all variables you can create a pipeline schedule. This ensures your job runs regularly.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published