Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/ingress controller #335

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from

[fix] don't mess with the securityContext

cbf5b37
Select commit
Loading
Failed to load commit list.
Draft

Feature/ingress controller #335

[fix] don't mess with the securityContext
cbf5b37
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Sep 27, 2024 in 3m 22s

Build Failed

The build failed.

Details

This is a normal build for the feature/ingress-controller branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "env": [
    "global={:GITHUB_API_USER=>\"domq\"}=GITHUB_API_TOKEN=[secure]"
  ],
  "services": [
    "docker"
  ],
  "script": [
    "set -e -x\ndocker pull ubuntu:bionic\n\nwp_base_branch_build_arg=\nmgmt_build_args=\nif [ -n \"$TRAVIS_BRANCH\" ]; then\n  wp_base_branch_build_arg=\"--manifest-url=https://raw.githubusercontent.com/epfl-si/wp-ops/$TRAVIS_BRANCH/ansible/roles/wordpress-instance/tasks/plugins.yml\"\n  mgmt_build_args=\"--build-arg WP_OPS_BRANCH=$TRAVIS_BRANCH\"\nfi\ndocker build \\\n   --build-arg \"GITHUB_API_USER=${GITHUB_API_USER}\"           \\\n   --build-arg \"GITHUB_API_TOKEN=${GITHUB_API_TOKEN}\"         \\\n   --build-arg \"INSTALL_AUTO_FLAGS=--exclude=wp-media-folder --exclude=wpforms $wp_base_branch_build_arg\" \\\n   -t epflsi/os-wp-base docker/wp-base\ndocker build $mgmt_build_args \\\n   -t epflsi/os-wp-mgmt docker/mgmt\nfind docker -mindepth 1 -maxdepth 1 -type d \\\n  | grep -v wp-base | grep -v mgmt | xargs -t -n 1 docker build"
  ]
}