Skip to content

error: could not create a builder instance with TLS data loaded from environment #105

@lexfrei

Description

@lexfrei

Behaviour

Steps to reproduce this issue

  1. Install k3s in your arm64 cluster
  2. Install actions-runner-controller
  3. Run your workflow there

Expected behaviour

No errors

Actual behaviour

error: could not create a builder instance with TLS data loaded from environment. Please use docker context create <context-name> to create a context for current environment and then create a builder instance with docker buildx create <context-name>

Configuration

name: Main Workflow

on:
  push

jobs:
  lint:
    runs-on: self-hosted
    steps:
      - uses: actions/[email protected]
      - name: golangci-lint
        uses: golangci/[email protected]
        with:
          version: v1.42
      # Waiting for https://github.com/hadolint/hadolint-action/issues/38
      # - name: hadolint
      #   uses: hadolint/[email protected]
      #   with:
      #     dockerfile: build/vk2tg/Dockerfile

  build:
    needs: lint
    runs-on: self-hosted
    steps:

    - name: Docker meta
      id: docker_meta
      uses: docker/[email protected]
      with:
        images: ghcr.io/${{ github.repository }}
        flavor: |
          latest=true
        tags: |
            type=ref,event=branch
            type=ref,event=pr
            type=sha
    - name: Set up QEMU
      uses: docker/[email protected]

    - name: Checkout
      uses: actions/[email protected]

    - name: Set up Docker Buildx
      uses: docker/[email protected]

  <...>

Logs

logs_415.zip

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions