Actions-runner-controller: Runner container does not restart even if the job ends normally

Created on 30 Jul 2020  ·  15Comments  ·  Source: summerwind/actions-runner-controller

Hai ! Thank you always for your Kubernetes operator !!

I have a question.
Even if the action job finishes successfully, only certain pods get stuck without performing a runner container restart...

runnerDeployment’s manifest:

```runnerDeployment.yaml
apiVersion: actions.summerwind.dev/v1alpha1
kind: RunnerDeployment
metadata:
name: runner
namespace: runner
spec:
replicas: 3
template:
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: beta.kubernetes.io/instance-type
operator: In
values:
- c4.2xlarge
- c5.2xlarge
envFrom:
- configMapRef:
name: ro-actions-runner
- secretRef:
name: ro-actions-runner
image: .dkr.ecr.ap-northeast-1.amazonaws.com/custom-runner:1.15
labels:
- ro
repository:

runner's status:

😀 ❯❯❯ k get pod -n runner
NAME READY STATUS RESTARTS AGE
ro-runner-52zmh-4tcrt 2/2 Running 0 47m
ro-runner-52zmh-vjb2f 2/2 Running 0 136m
ro-runner-52zmh-wxt6k 1/2 Running 0 124m <<< this runner pod

😀 ❯❯❯ k describe pod -n runner ro-runner-52zmh-wxt6k
Name: ro-runner-52zmh-wxt6k
Namespace: runner
Priority: 0
Node: ip-10-0-56-65.ap-northeast-1.compute.internal/10.0.56.65
Start Time: Thu, 30 Jul 2020 16:44:09 +0900
Labels: runner-template-hash=847bc54779
Annotations: kubernetes.io/psp: eks.privileged
Status: Running
IP: 10.0.59.171
Controlled By: Runner/ro-runner-52zmh-wxt6k
Containers:
runner:
Container ID: docker://19080ec1adc8822bfaf916c43797e7171a1c5ff5b1666b0df2485cd9c19db976
Image: .dkr.ecr.ap-northeast-1.amazonaws.com/custom-runner:1.15
Image ID: docker-pullable://.dkr.ecr.ap-northeast-1.amazonaws.com/custom-runner@sha256:bb88570bc0bedc6c8b8321887e9b6e693c0fb6542aba83e3a839949338f99b73
Port:
Host Port:
State: Terminated
Reason: Completed <<< normally finish
Exit Code: 0 <<< exit status 0
Started: Thu, 30 Jul 2020 16:44:10 +0900
Finished: Thu, 30 Jul 2020 17:05:52 +0900
Ready: False

I’m thinking that the runner container will be restarted when the actions jobs normally finish running by the following processing.
Is my perception correct?

https://github.com/summerwind/actions-runner-controller/blob/ba8f61141b30268a00387795a66abdd72b60c78c/controllers/runner_controller.go#L194-L196

runner's status

😱 ❯❯❯ k get pod -n runner ro-runner-52zmh-wxt6k -o json | jq -r ".status.containerStatuses[].state"
{
"running": {
"startedAt": "2020-07-30T07:44:10Z"
}
}
{
"terminated": {
"containerID": "docker://19080ec1adc8822bfaf916c43797e7171a1c5ff5b1666b0df2485cd9c19db976",
"exitCode": 0,
"finishedAt": "2020-07-30T08:05:52Z",
"reason": "Completed",
"startedAt": "2020-07-30T07:44:10Z"
}
}
```

Thank you!

Most helpful comment

The error is here: https://github.com/summerwind/actions-runner-controller/blob/ee8fb5a3886ef5a75df5c126bcd3c846e13c801e/github/github.go#L87

The token does not get refreshed for a 10 minute interval. The old token is returned and the reconcile function returns with Requeue: true - after the token update function is called. If you reduce this 10 minute interval - this should repair this problem. @mumoshu

Since token expiration is not a huge deal - the runner can still make calls even if the registration token has expired, I suggest we change this function to:

    if ok && rt.GetExpiresAt().After(time.Now()) {
        return rt, nil
    }

All 15 comments

Perhaps it is related to the issue below?
https://github.com/summerwind/actions-runner-controller/issues/62

This appears to be tied to when jobs land in a failed state

2020-11-17 00:16:18Z: Listening for Jobs
2020-11-17 00:27:53Z: Running job: ci_tests
2020-11-17 00:30:07Z: Job ci_tests completed with result: Failed
Runner listener exited with error code 0
Runner listener exit with 0 return code, stop the service, no retry needed.

@ZacharyBenamram Thanks for raising another point to see!

@ahmad-hamade has submitted a detailed report related to this in #198, and it seems this happens even when the job succeeded.

As the stopped runner eventually removed and recreated, this might be due to that any of our controllers doesn't detect the stopped container until the next resync period?

Generally speaking, any controller that creates pods should "watch" events from the pod, and enqueue a reconciliation on the parent "runner" resource on every pod event. Maybe our runner-controller isn't working like that?

Today I faced the same problem again and my job completed with the result succeeded.

Here are the logs:

Starting Runner listener with startup type: service
Started listener process
Started running service

√ Connected to GitHub

2020-11-17 11:21:16Z: Listening for Jobs
2020-11-17 11:38:53Z: Running job: Plan Changes (self-hosted, xxxxxxx, non-prod, account-resources)
2020-11-17 11:39:08Z: Job Plan Changes (self-hosted, xxxxxxx, non-prod, account-resources) completed with result: Succeeded
Runner listener exited with error code 0
Runner listener exit with 0 return code, stop the service, no retry needed.
>> k get po -n runner-infra                                
NAME                       READY   STATUS      RESTARTS   AGE
runner-infra-4kcrh-46487   0/1     Completed   0          21m

>> k get runnerdeployments.actions.summerwind.dev -A
NAMESPACE      NAME           DESIRED   CURRENT   READY
runner-infra   runner-infra   1                   

>> k get runner -A                                  
NAMESPACE      NAME                       ORGANIZATION   REPOSITORY               LABELS                                         STATUS
runner-infra   runner-infra-4kcrh-46487                  org_dummy_1/somerepo     [runner-infra xxxxxxxxxxxx fs-test-eks test]   Running

>> k get po -n runner-infra
NAME                       READY   STATUS      RESTARTS   AGE
runner-infra-4kcrh-46487   0/1     Completed   0          22m

@ahmad-hamade / @naka-gawa - do you see the job running and completing within a similar time window by either an "Updated registration token" event or a "the object has been modified; please apply your changes to the latest version and try again" error?

Top right graph is a sample of stopped docker containers - this also seems to align with the workqueue_depth dropping to zero. The sync period set is 5minute intervals - as seen by the spacing between metrics emitted. Also note the spike in workqueue_total_retries during the period of stopped containers.

Screen Shot 2020-11-18 at 7 39 51 PM

I think we may resolve this issue if we upgrade the controller-runtime to v0.6.3 - testing now

Hi @ZacharyBenamram,

Yes, I can see these logs in the controller once the runner goes into the completed state with Updated registration token events then the object has been modified; please apply your changes to the latest version and try again.

And my workflow jobs will be stuck for around 5min in queue state until the controller delete and re-create a new pod.

@ahmad-hamade - can you provide timestamps for when the container terminates, when the logs say that the token has been updated, and also any other relevant logs around pod creation / deletion timestamps?

I think these errors are not related to the controller-runtime, but are the result of updating the token while a pod is running a job. I think you'll also see that the update registration token event happens multiple times for the same runner. It appears as if the Runner resource is not being updated quickly enough and so the the reconcile function doesnt have the opportunity to delete the pod, since the deletion logic is the last portion of the runner reconciliation. @mumoshu thoughts?

Sure @ZacharyBenamram I will provide you the logs once the issue occurred.

@ZacharyBenamram Below are the logs:

k describe po -n runner-infra runner-infra-hr9bs-x687s

Name:         runner-infra-hr9bs-x687s
Namespace:    runner-infra
Priority:     0
Node:         ip-10-138-73-41.eu-west-1.compute.internal/10.138.73.41
Start Time:   Thu, 19 Nov 2020 22:30:36 +0100
Labels:       runner-template-hash=b9d86b4d5
Annotations:  kube-secret-inject: true
              kubernetes.io/psp: eks.privileged
Status:       Succeeded
IP:           10.138.73.98
IPs:
  IP:           10.138.73.98
Controlled By:  Runner/runner-infra-hr9bs-x687s
Init Containers:
  init-kube-secret-inject:
    Container ID:   docker://ac8ea0908d46c27e7592c83fe87f0357cd20b21dc0cddfc5715b1243176ff81e
    Image:          702267635140.dkr.ecr.eu-west-1.amazonaws.com/common/kube-secret-inject:2
    Image ID:       docker-pullable://702267635140.dkr.ecr.eu-west-1.amazonaws.com/common/kube-secret-inject@sha256:796b533b1286563d7ee79ac6dc2e3d9c7ce91a33f6197a55f6489dfeef78305b
    Port:           <none>
    Host Port:      <none>
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Thu, 19 Nov 2020 22:30:42 +0100
      Finished:     Thu, 19 Nov 2020 22:30:42 +0100
    Ready:          True
    Restart Count:  0
    Environment:    <none>
    Mounts:
      /kube-secret-inject from kube-secret-inject (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from runner-infra-sa-token-d5s22 (ro)
  ssh-config:
    Container ID:  docker://3531ed57835e24c8bce01549e773d4a35742c992d178a3608191a777ed881e27
    Image:         177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra:v0.4.0
    Image ID:      docker-pullable://177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra@sha256:4cd9b9102b9508ef03fb349d7d2f1a77612357e5ccb81212ae0d58bee2eb8a0c
    Port:          <none>
    Host Port:     <none>
    Command:
      /kube-secret-inject/kube-secret-inject
    Args:
      /bin/sh
      -c
      echo "$GIT_SSH_KEY" > /home/runner/.ssh/id_rsa; chmod 400 /home/runner/.ssh/id_rsa; ssh-keyscan -t rsa github.com >> /home/runner/.ssh/known_hosts; chmod 700 /home/runner/.ssh/known_hosts; chown -R 1000 /home/runner/.ssh/*
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Thu, 19 Nov 2020 22:30:43 +0100
      Finished:     Thu, 19 Nov 2020 22:30:44 +0100
    Ready:          True
    Restart Count:  0
    Environment:
      AWS_REGION:                   eu-west-1
      AWS_ROLE_ARN:                 arn:aws:iam::177350576146:role/fs-prod-eks-github-runners-infra-role
      AWS_WEB_IDENTITY_TOKEN_FILE:  /var/run/secrets/eks.amazonaws.com/serviceaccount/token
      GIT_SSH_KEY:                  ps::/fs/prod/service-accounts/shared/github/private-key
    Mounts:
      /etc/kube-secret-inject from annotations (rw)
      /home/runner/.ssh from ssh (rw)
      /kube-secret-inject from kube-secret-inject (rw)
      /var/run/secrets/eks.amazonaws.com/serviceaccount from aws-iam-token (ro)
      /var/run/secrets/kubernetes.io/serviceaccount from runner-infra-sa-token-d5s22 (ro)
Containers:
  runner:
    Container ID:   docker://792cc97ce0bb00838cc0ed982060ec50c95feed9f542c4183ae869d51db9a32d
    Image:          177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra:v0.4.0
    Image ID:       docker-pullable://177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra@sha256:4cd9b9102b9508ef03fb349d7d2f1a77612357e5ccb81212ae0d58bee2eb8a0c
    Port:           <none>
    Host Port:      <none>
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Thu, 19 Nov 2020 22:30:44 +0100
      Finished:     Thu, 19 Nov 2020 22:40:59 +0100
    Ready:          False
    Restart Count:  0
    Environment:
      RUNNER_NAME:                                         runner-infra-hr9bs-x687s
      RUNNER_ORG:                                          
      RUNNER_REPO:                                         some-org/repo-a
      RUNNER_LABELS:                                       runner-infra,177350576146,fs-prod-eks,prod
      RUNNER_GROUP:                                        
      RUNNER_TOKEN:                                        ARIGDJQ6YZR3V7IPQSFAEOC7W3SHY
      DOCKERD_IN_RUNNER:                                   true
      GITHUB_URL:                                          https://github.com/
      AWS_REGION:                                          eu-west-1
      NEW_RELIC_METADATA_KUBERNETES_CLUSTER_NAME:          fs-prod-eks
      NEW_RELIC_METADATA_KUBERNETES_NODE_NAME:              (v1:spec.nodeName)
      NEW_RELIC_METADATA_KUBERNETES_NAMESPACE_NAME:        runner-infra (v1:metadata.namespace)
      NEW_RELIC_METADATA_KUBERNETES_POD_NAME:              runner-infra-hr9bs-x687s (v1:metadata.name)
      NEW_RELIC_METADATA_KUBERNETES_CONTAINER_NAME:        runner-infra
      NEW_RELIC_METADATA_KUBERNETES_CONTAINER_IMAGE_NAME:  summerwind/actions-runner-dind
      AWS_ROLE_ARN:                                        arn:aws:iam::177350576146:role/fs-prod-eks-github-runners-infra-role
      AWS_WEB_IDENTITY_TOKEN_FILE:                         /var/run/secrets/eks.amazonaws.com/serviceaccount/token
    Mounts:
      /home/runner/.ssh from ssh (rw)
      /home/runner/cache/terragrunt from runner-infra-pvc (rw)
      /var/run/secrets/eks.amazonaws.com/serviceaccount from aws-iam-token (ro)
      /var/run/secrets/kubernetes.io/serviceaccount from runner-infra-sa-token-d5s22 (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             False 
  ContainersReady   False 
  PodScheduled      True 
Volumes:
  annotations:
    Type:  DownwardAPI (a volume populated by information about the pod)
    Items:
      metadata.annotations['kube-secret-inject'] -> config
  kube-secret-inject:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     
    SizeLimit:  <unset>
  aws-iam-token:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  86400
  ssh:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     
    SizeLimit:  <unset>
  runner-infra-pvc:
    Type:       PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
    ClaimName:  runner-infra-pvc
    ReadOnly:   false
  runner-infra-sa-token-d5s22:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  runner-infra-sa-token-d5s22
    Optional:    false
QoS Class:       BestEffort
Node-Selectors:  <none>
Tolerations:     dedicated=runner:NoSchedule
                 node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                 node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
  Type    Reason     Age   From               Message
  ----    ------     ----  ----               -------
  Normal  Scheduled  11m   default-scheduler  Successfully assigned runner-infra/runner-infra-hr9bs-x687s to ip-10-138-73-41.eu-west-1.compute.internal
  Normal  Pulling    11m   kubelet            Pulling image "702267635140.dkr.ecr.eu-west-1.amazonaws.com/common/kube-secret-inject:2"
  Normal  Pulled     11m   kubelet            Successfully pulled image "702267635140.dkr.ecr.eu-west-1.amazonaws.com/common/kube-secret-inject:2"
  Normal  Created    11m   kubelet            Created container init-kube-secret-inject
  Normal  Started    11m   kubelet            Started container init-kube-secret-inject
  Normal  Pulled     11m   kubelet            Container image "177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra:v0.4.0" already present on machine
  Normal  Created    11m   kubelet            Created container ssh-config
  Normal  Started    11m   kubelet            Started container ssh-config
  Normal  Pulled     11m   kubelet            Container image "177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra:v0.4.0" already present on machine
  Normal  Created    11m   kubelet            Created container runner
  Normal  Started    11m   kubelet            Started container runner

k describe runners.actions.summerwind.dev -n runner-infra runner-infra-hr9bs-x687s

Name:         runner-infra-hr9bs-x687s
Namespace:    runner-infra
Labels:       runner-template-hash=b9d86b4d5
Annotations:  kube-secret-inject: true
API Version:  actions.summerwind.dev/v1alpha1
Kind:         Runner
Metadata:
  Creation Timestamp:  2020-11-19T16:20:57Z
  Finalizers:
    runner.actions.summerwind.dev
  Generate Name:  runner-infra-hr9bs-
  Generation:     1
  Owner References:
    API Version:           actions.summerwind.dev/v1alpha1
    Block Owner Deletion:  true
    Controller:            true
    Kind:                  RunnerReplicaSet
    Name:                  runner-infra-hr9bs
    UID:                   10fa248a-7d5f-45c9-8123-c53340479248
  Resource Version:        19655384
  Self Link:               /apis/actions.summerwind.dev/v1alpha1/namespaces/runner-infra/runners/runner-infra-hr9bs-x687s
  UID:                     909becc4-4e18-4749-9c54-bdad6c7a0f31
Spec:
  Dockerd Container Resources:
  Dockerd Within Runner Container:  true
  Env:
    Name:   AWS_REGION
    Value:  eu-west-1
    Name:   NEW_RELIC_METADATA_KUBERNETES_CLUSTER_NAME
    Value:  fs-prod-eks
    Name:   NEW_RELIC_METADATA_KUBERNETES_NODE_NAME
    Value From:
      Field Ref:
        API Version:  v1
        Field Path:   spec.nodeName
    Name:             NEW_RELIC_METADATA_KUBERNETES_NAMESPACE_NAME
    Value From:
      Field Ref:
        API Version:  v1
        Field Path:   metadata.namespace
    Name:             NEW_RELIC_METADATA_KUBERNETES_POD_NAME
    Value From:
      Field Ref:
        API Version:  v1
        Field Path:   metadata.name
    Name:             NEW_RELIC_METADATA_KUBERNETES_CONTAINER_NAME
    Value:            runner-infra
    Name:             NEW_RELIC_METADATA_KUBERNETES_CONTAINER_IMAGE_NAME
    Value:            summerwind/actions-runner-dind
    Name:             AWS_ROLE_ARN
    Value:            arn:aws:iam::177350576146:role/fs-prod-eks-github-runners-infra-role
    Name:             AWS_WEB_IDENTITY_TOKEN_FILE
    Value:            /var/run/secrets/eks.amazonaws.com/serviceaccount/token
  Image:              177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra:v0.4.0
  Image Pull Policy:  IfNotPresent
  Init Containers:
    Args:
      echo "$GIT_SSH_KEY" > /home/runner/.ssh/id_rsa; chmod 400 /home/runner/.ssh/id_rsa; ssh-keyscan -t rsa github.com >> /home/runner/.ssh/known_hosts; chmod 700 /home/runner/.ssh/known_hosts; chown -R 1000 /home/runner/.ssh/*
    Command:
      /bin/sh
      -c
    Env:
      Name:             AWS_REGION
      Value:            eu-west-1
      Name:             AWS_ROLE_ARN
      Value:            arn:aws:iam::177350576146:role/fs-prod-eks-github-runners-infra-role
      Name:             AWS_WEB_IDENTITY_TOKEN_FILE
      Value:            /var/run/secrets/eks.amazonaws.com/serviceaccount/token
      Name:             GIT_SSH_KEY
      Value:            ps::/fs/prod/service-accounts/shared/github/private-key
    Image:              177350576146.dkr.ecr.eu-west-1.amazonaws.com/fs/prod/github-runners/infra:v0.4.0
    Image Pull Policy:  IfNotPresent
    Name:               ssh-config
    Resources:
    Security Context:
    Volume Mounts:
      Mount Path:  /var/run/secrets/eks.amazonaws.com/serviceaccount
      Name:        aws-iam-token
      Read Only:   true
      Mount Path:  /home/runner/.ssh
      Name:        ssh
  Labels:
    runner-infra
    177350576146
    fs-prod-eks
    prod
  Repository:  some-org/repo-a
  Resources:
  Security Context:
    Fs Group:            27
  Service Account Name:  runner-infra-sa
  Tolerations:
    Effect:    NoSchedule
    Key:       dedicated
    Operator:  Equal
    Value:     runner
  Volume Mounts:
    Mount Path:  /var/run/secrets/eks.amazonaws.com/serviceaccount
    Name:        aws-iam-token
    Read Only:   true
    Mount Path:  /home/runner/.ssh
    Name:        ssh
    Mount Path:  /home/runner/cache/terragrunt
    Name:        runner-infra-pvc
  Volumes:
    Name:  aws-iam-token
    Projected:
      Default Mode:  420
      Sources:
        Service Account Token:
          Audience:            sts.amazonaws.com
          Expiration Seconds:  86400
          Path:                token
    Empty Dir:
    Name:  ssh
    Name:  runner-infra-pvc
    Persistent Volume Claim:
      Claim Name:  runner-infra-pvc
Status:
  Message:  
  Phase:    Running
  Reason:   
  Registration:
    Expires At:  2020-11-19T21:32:44Z
    Labels:
      runner-infra
      177350576146
      fs-prod-eks
      prod
    Repository:  some-org/repo-a
    Token:       ARIGDJQ6YZR3V7IPQSFAEOC7W3SHY
Events:
  Type    Reason                    Age                     From               Message
  ----    ------                    ----                    ----               -------
  Normal  PodCreated                13m (x12 over 5h22m)    runner-controller  Created pod 'runner-infra-hr9bs-x687s'
  Normal  PodDeleted                13m (x12 over 5h22m)    runner-controller  Deleted pod 'runner-infra-hr9bs-x687s'
  Normal  RegistrationTokenUpdated  2m49s (x89 over 5h22m)  runner-controller  Successfully update registration token

Controller logs

2020-11-19T16:20:57.226Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 1}
2020-11-19T16:20:57.260Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "4a1e60d6-82df-4317-abb9-85a99c84d7c7", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:20:57.261Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "4a1e60d6-82df-4317-abb9-85a99c84d7c7", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:20:57.264Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "b5b16e10-7f24-497e-ac11-f857269e51e1", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:20:57.264Z    INFO    runner-resource validate resource to be created {"name": "runner-infra-hr9bs-x687s"}
2020-11-19T16:20:57.264Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "b5b16e10-7f24-497e-ac11-f857269e51e1", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:20:57.275Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:20:57.275Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:20:57.278Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "c8a532b1-9343-4486-9ae6-5e0fd1597b07", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:20:57.278Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "c8a532b1-9343-4486-9ae6-5e0fd1597b07", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:20:57.285Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "687d6b88-6c90-4c9d-8b3b-1e93e5b900c6", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:20:57.285Z    INFO    runner-resource validate resource to be updated {"name": "runner-infra-hr9bs-x687s"}
2020-11-19T16:20:57.285Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "687d6b88-6c90-4c9d-8b3b-1e93e5b900c6", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:20:57.361Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:20:57.361Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:20:57.361Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:20:57.361Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:20:57.368Z    ERROR   controllers.RunnerReplicaSet    Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs", "error": "Operation cannot be fulfilled on runnerreplicasets.actions.summerwind.dev \"runner-infra-hr9bs\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReplicaSetReconciler).Reconcile
    /workspace/controllers/runnerreplicaset_controller.go:154
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:20:57.368Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs", "error": "Operation cannot be fulfilled on runnerreplicasets.actions.summerwind.dev \"runner-infra-hr9bs\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:20:57.372Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:20:57.372Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550027"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:20:57.463Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:20:57.463Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:20:57.463Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550028"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:20:57.561Z    ERROR   controllers.Runner  Failed to create pod resource   {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "pods \"runner-infra-hr9bs-x687s\" already exists"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:142
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:20:57.562Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "pods \"runner-infra-hr9bs-x687s\" already exists"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:20:58.369Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:20:58.369Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:20:58.577Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:20:58.577Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:20:58.577Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:20:58.867Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:20:58.867Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:03.381Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:21:03.382Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:04.435Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:21:04.435Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:05.344Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:21:05.344Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:06.164Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:06.164Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:21:06.175Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:21:06.176Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:21:06.176Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:21:06.177Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:21:06.450Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:21:06.450Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:44.716Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:21:44.716Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:44.717Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550104"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:21:44.760Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:21:44.760Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:44.760Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550104"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:21:44.777Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:21:44.777Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:44.792Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:21:44.792Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:21:44.793Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:21:44.793Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:21:45.055Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:45.352Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:50.260Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:51.277Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:52.356Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:53.136Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:21:53.136Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:21:53.146Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:21:53.147Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:21:53.147Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:21:53.147Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:21:53.429Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:22.450Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:22:22.450Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:22.450Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:22.450Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550395"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:22:22.483Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:22:22.483Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:22.483Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550395"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:22:22.496Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:22:22.497Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:22.507Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:22:22.509Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:22:22.509Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:22:22.510Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:22:22.745Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:23.024Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:28.855Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:29.801Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:31.997Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:32.839Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:22:32.840Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:22:32.854Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:22:32.854Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:22:32.854Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:22:32.854Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:22:33.124Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:23:59.991Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T16:23:59.991Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:24:00.325Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:00.599Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:24:46.277Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T16:24:46.285Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "6fd025f4-fc53-4b9b-80c9-14bc8ca9ebc3", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerDeployment", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerdeployments"}}
2020-11-19T16:24:46.286Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "6fd025f4-fc53-4b9b-80c9-14bc8ca9ebc3", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:46.290Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "7d7bb611-0a8e-43af-b06a-01273873eacc", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerDeployment", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerdeployments"}}
2020-11-19T16:24:46.290Z    INFO    runnerdeployment-resource   validate resource to be updated {"name": "runner-infra"}
2020-11-19T16:24:46.290Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "7d7bb611-0a8e-43af-b06a-01273873eacc", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:46.298Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T16:24:46.381Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "f0ce921a-be34-42f9-9a97-fc62932b6334", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerReplicaSet", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerreplicasets"}}
2020-11-19T16:24:46.382Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "f0ce921a-be34-42f9-9a97-fc62932b6334", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:46.394Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "154690d3-bd03-4771-b308-696a1cee6dd1", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerReplicaSet", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerreplicasets"}}
2020-11-19T16:24:46.394Z    INFO    runnerreplicaset-resource   validate resource to be updated {"name": "runner-infra-hr9bs"}
2020-11-19T16:24:46.394Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "154690d3-bd03-4771-b308-696a1cee6dd1", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:46.402Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:24:46.403Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:24:46.403Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 2}
2020-11-19T16:24:46.692Z    INFO    controllers.RunnerReplicaSet    runners {"github": [{"id":484,"name":"runner-infra-fjn6l-6mj54","os":"linux","status":"online","busy":false},{"id":491,"name":"runner-infra-hr9bs-bj9md","os":"linux","status":"offline","busy":false},{"id":496,"name":"runner-infra-4kcrh-9wmzk","os":"linux","status":"online","busy":false},{"id":497,"name":"runner-infra-fjn6l-79zch","os":"linux","status":"online","busy":false},{"id":498,"name":"runner-infra-hr9bs-x687s","os":"linux","status":"online","busy":false}]}
2020-11-19T16:24:47.014Z    INFO    controllers.RunnerReplicaSet    runners {"github": [{"id":484,"name":"runner-infra-fjn6l-6mj54","os":"linux","status":"online","busy":false},{"id":491,"name":"runner-infra-hr9bs-bj9md","os":"linux","status":"offline","busy":false},{"id":496,"name":"runner-infra-4kcrh-9wmzk","os":"linux","status":"online","busy":false},{"id":497,"name":"runner-infra-fjn6l-79zch","os":"linux","status":"online","busy":false},{"id":498,"name":"runner-infra-hr9bs-x687s","os":"linux","status":"online","busy":false}]}
2020-11-19T16:24:47.027Z    INFO    controllers.RunnerReplicaSet    Deleted runner  {"runner": "runner-infra/runner-infra-hr9bs", "runnerreplicaset": "runner-infra-hr9bs"}
2020-11-19T16:24:47.027Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"RunnerReplicaSet","namespace":"runner-infra","name":"runner-infra-hr9bs","uid":"10fa248a-7d5f-45c9-8123-c53340479248","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19551401"}, "reason": "RunnerDeleted", "message": "Deleted runner 'runner-infra-hr9bs-bj9md'"}
2020-11-19T16:24:47.027Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:24:47.027Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 2}
2020-11-19T16:24:47.323Z    INFO    controllers.RunnerReplicaSet    runners {"github": [{"id":484,"name":"runner-infra-fjn6l-6mj54","os":"linux","status":"online","busy":false},{"id":491,"name":"runner-infra-hr9bs-bj9md","os":"linux","status":"offline","busy":false},{"id":496,"name":"runner-infra-4kcrh-9wmzk","os":"linux","status":"online","busy":false},{"id":497,"name":"runner-infra-fjn6l-79zch","os":"linux","status":"online","busy":false},{"id":498,"name":"runner-infra-hr9bs-x687s","os":"linux","status":"online","busy":false}]}
2020-11-19T16:24:47.592Z    INFO    controllers.RunnerReplicaSet    runners {"github": [{"id":484,"name":"runner-infra-fjn6l-6mj54","os":"linux","status":"online","busy":false},{"id":491,"name":"runner-infra-hr9bs-bj9md","os":"linux","status":"offline","busy":false},{"id":496,"name":"runner-infra-4kcrh-9wmzk","os":"linux","status":"online","busy":false},{"id":497,"name":"runner-infra-fjn6l-79zch","os":"linux","status":"online","busy":false},{"id":498,"name":"runner-infra-hr9bs-x687s","os":"linux","status":"online","busy":false}]}
2020-11-19T16:24:47.602Z    INFO    controllers.RunnerReplicaSet    Deleted runner  {"runner": "runner-infra/runner-infra-hr9bs", "runnerreplicaset": "runner-infra-hr9bs"}
2020-11-19T16:24:47.602Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:24:47.602Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"RunnerReplicaSet","namespace":"runner-infra","name":"runner-infra-hr9bs","uid":"10fa248a-7d5f-45c9-8123-c53340479248","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19551401"}, "reason": "RunnerDeleted", "message": "Deleted runner 'runner-infra-hr9bs-bj9md'"}
2020-11-19T16:24:47.767Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "b56fb8b7-149d-4421-a41a-c29e4bbcd074", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:24:47.767Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "b56fb8b7-149d-4421-a41a-c29e4bbcd074", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:47.771Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "ac8d5655-94b2-45fd-bd60-c33bd5b9f114", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:24:47.771Z    INFO    runner-resource validate resource to be updated {"name": "runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:47.771Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "ac8d5655-94b2-45fd-bd60-c33bd5b9f114", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:47.777Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "46dff5ed-64db-4f90-9149-160af28fcafd", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:24:47.779Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "46dff5ed-64db-4f90-9149-160af28fcafd", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:47.863Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "3f8a31ad-b442-45f8-83ac-cb5f1bf85c9d", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T16:24:47.863Z    INFO    runner-resource validate resource to be updated {"name": "runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:47.863Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "3f8a31ad-b442-45f8-83ac-cb5f1bf85c9d", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T16:24:47.875Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:24:47.875Z    INFO    controllers.Runner  Removed runner from GitHub  {"runner": "runner-infra/runner-infra-hr9bs-bj9md", "repository": "some-org/repo-a", "organization": ""}
2020-11-19T16:24:47.875Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:47.875Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:47.885Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:24:47.885Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:24:47.886Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:24:47.886Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:24:48.799Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:49.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:50.989Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:24:51.002Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-bj9md"}
2020-11-19T16:26:11.053Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:26:18.763Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:26:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:26:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:28:38.015Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:33:59.991Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:33:59.991Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:34:00.309Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:34:46.346Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T16:34:46.346Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T16:36:11.029Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:36:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:36:18.765Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:36:18.765Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:38:38.015Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:43:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:43:59.992Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:44:00.002Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.002Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.020Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.020Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.041Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.041Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.071Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.071Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.120Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.120Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.209Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.210Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.380Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.380Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:00.709Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:00.709Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:01.357Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:01.358Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:02.646Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:02.646Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:05.215Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:05.216Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:10.345Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:10.345Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:20.595Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:20.595Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:41.085Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:44:41.085Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:44:46.467Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T16:44:46.467Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T16:45:22.053Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:45:22.053Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:46:10.696Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:46:10.696Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:46:18.763Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:46:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:46:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:46:43.982Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:46:43.983Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:48:38.015Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:52:11.672Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:52:11.672Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:53:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:53:59.992Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:54:00.696Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:54:00.696Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:54:00.696Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:54:00.696Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19550646"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T16:54:01.381Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:54:01.381Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:01.381Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561332"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:54:01.387Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:02.154Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:03.183Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:03.252Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T16:54:03.253Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:03.253Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561332"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T16:54:03.267Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:03.268Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:54:03.279Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:54:03.279Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T16:54:03.285Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:54:03.285Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:54:03.285Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:54:03.285Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:54:04.569Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:09.208Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:09.916Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:10.968Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:11.727Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:11.727Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:54:11.736Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:54:11.737Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:54:11.737Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:54:11.737Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:54:12.044Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:54:46.264Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T16:54:46.264Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T16:56:11.047Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T16:56:18.763Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T16:56:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T16:56:18.764Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T16:58:38.015Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:03:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:03:59.992Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:04:00.376Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:04:46.372Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T17:04:46.372Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T17:06:11.023Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:06:18.763Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:06:18.763Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:06:18.764Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:08:38.016Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:13:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:13:59.992Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:14:00.326Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:14:46.394Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T17:14:46.394Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T17:16:11.006Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:16:18.764Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:16:18.764Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:16:18.764Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:18:38.016Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:23:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:23:59.992Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:24:00.502Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:24:46.242Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T17:24:46.242Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T17:26:11.023Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:26:18.764Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:26:18.764Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:26:18.765Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:27:17.666Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:33:11.003Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:33:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:33:59.992Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:34:00.304Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:34:46.343Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T17:34:46.343Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T17:36:18.764Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:36:18.764Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:36:18.765Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:37:17.667Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:43:11.037Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:43:59.992Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:43:59.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:44:00.338Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:44:46.359Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T17:44:46.359Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T17:46:18.772Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:46:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:46:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:47:17.667Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:53:11.011Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:53:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:53:59.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:54:00.290Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T17:54:46.253Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T17:54:46.253Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T17:56:18.772Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T17:56:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T17:56:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T17:57:17.667Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:03:10.700Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:10.700Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:10.714Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:10.714Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:10.733Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:10.733Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:10.769Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:10.769Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:10.817Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:10.817Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:10.906Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:10.906Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:11.075Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:11.075Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:11.405Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:11.405Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:12.054Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:12.054Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:13.344Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:13.344Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:15.913Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:15.913Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:21.043Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:21.043Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:31.291Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:31.292Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:51.780Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:03:51.781Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:03:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:03:59.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:04:00.001Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:04:00.001Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:04:33.151Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:04:33.151Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19561419"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T18:04:33.152Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:04:33.152Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:04:33.475Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:04:33.476Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:33.478Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:33.475Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585260"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T18:04:34.670Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:38.549Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:38.610Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T18:04:38.610Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:38.610Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585260"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T18:04:38.627Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:04:38.627Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:38.637Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:04:38.637Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:04:38.638Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:04:38.638Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:04:39.157Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:39.447Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:45.283Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:46.326Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:46.363Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T18:04:46.363Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T18:04:47.310Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:48.068Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:04:48.069Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:04:48.078Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:04:48.078Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:04:48.078Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:04:48.078Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:04:48.337Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:06:18.772Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:06:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:06:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:07:17.302Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:07:17.667Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:13:11.035Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:13:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:13:59.994Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:14:00.266Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:14:46.267Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T18:14:46.267Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T18:16:18.772Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:16:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:16:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:17:17.667Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:23:11.050Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:23:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:23:59.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:24:00.338Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:24:46.607Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T18:24:46.608Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T18:26:18.772Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:26:18.772Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:26:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:27:17.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:33:11.163Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:33:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:33:59.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:34:00.297Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:34:46.294Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T18:34:46.294Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T18:36:18.772Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:36:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:36:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:37:17.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:43:11.028Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:43:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:43:59.994Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:44:00.346Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:44:46.259Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T18:44:46.259Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T18:46:18.773Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:46:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:46:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:47:17.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:53:11.058Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:53:59.993Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:53:59.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:54:00.272Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T18:54:46.397Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T18:54:46.397Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T18:56:18.773Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T18:56:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T18:56:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T18:57:17.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:03:11.100Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:03:59.699Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:03:59.699Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:03:59.975Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:04:46.319Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T19:04:46.319Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T19:06:18.773Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:06:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:06:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:07:17.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:13:10.702Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:10.702Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:10.714Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:10.714Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:10.732Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:10.732Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:10.761Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:10.761Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:10.810Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:10.810Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:10.898Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:10.898Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:11.067Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:11.067Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:11.394Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:11.394Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:12.043Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:12.043Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:13.332Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:13.332Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:15.900Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:15.900Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:21.029Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:21.029Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:31.279Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:31.279Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:51.769Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:51.769Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:13:59.699Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:13:59.699Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:13:59.707Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:13:59.707Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:14:32.737Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:14:32.737Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:14:46.397Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T19:14:46.397Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T19:16:18.773Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:16:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:16:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:17:16.893Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:17:16.893Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19585380"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T19:17:16.893Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:17:16.893Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:17:17.177Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:17:17.177Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:17.177Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:17.177Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19609940"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T19:17:17.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:17:18.243Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:19.273Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:19.347Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T19:17:19.347Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:19.347Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19609940"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T19:17:19.358Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:19.359Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:17:19.365Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T19:17:19.365Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T19:17:19.370Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:17:19.370Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:17:19.370Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:17:19.370Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:17:20.667Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:25.196Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:26.232Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:27.339Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:28.064Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:17:28.064Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:17:28.261Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:17:28.261Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:17:28.261Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:17:28.261Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:17:28.317Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:23:06.404Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T19:23:06.404Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T19:23:11.002Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:23:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:23:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:24:00.034Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:26:18.773Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:26:18.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:26:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:27:17.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:33:06.431Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T19:33:06.431Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T19:33:10.953Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:33:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:33:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:33:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:33:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:34:00.017Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:36:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:36:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:36:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:37:17.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:43:06.439Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T19:43:06.439Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T19:43:10.923Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:43:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:43:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:43:59.966Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:46:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:46:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:46:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:47:17.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:53:06.499Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T19:53:06.499Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T19:53:10.947Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:53:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:53:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:53:59.951Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T19:56:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T19:56:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T19:56:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T19:57:17.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:03:06.565Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T20:03:06.565Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T20:03:10.972Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:03:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:03:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:03:59.973Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:06:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:06:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:06:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:07:17.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:13:06.477Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T20:13:06.477Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T20:13:11.001Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:13:59.700Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:13:59.700Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:13:59.928Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:16:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:16:18.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:16:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:17:17.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:23:06.493Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T20:23:06.493Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T20:23:10.705Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:10.705Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:10.719Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:10.719Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:10.738Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:10.738Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:10.767Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:10.767Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:10.816Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:10.816Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:10.905Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:10.905Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:11.073Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:11.073Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:11.402Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:11.402Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:12.050Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:12.051Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:13.344Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:13.344Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:15.913Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:15.913Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:21.043Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:21.044Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:31.294Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:31.295Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:51.782Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:51.782Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:23:59.701Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:23:59.701Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:23:59.709Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:23:59.709Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:24:32.756Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:24:32.756Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:26:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:26:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:26:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:27:16.605Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:27:16.605Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:27:17.672Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:32:44.647Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:32:44.647Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19610029"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T20:32:44.648Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:32:44.648Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:32:44.953Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:32:44.953Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:44.953Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19635553"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T20:32:44.953Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:45.581Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:46.625Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:46.676Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T20:32:46.676Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:46.676Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19635553"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T20:32:46.690Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:32:46.691Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:46.702Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:32:46.702Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:32:46.702Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:32:46.703Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:32:47.037Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:47.488Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:52.466Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:53.335Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:54.429Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:55.193Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:32:55.193Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:32:55.203Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:32:55.203Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:32:55.203Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:32:55.203Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:32:55.446Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:33:06.361Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T20:33:06.361Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T20:33:10.951Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:33:59.701Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:33:59.701Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:33:59.973Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:36:18.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:36:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:36:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:37:17.671Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:41:09.091Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:41:09.091Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:41:09.446Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:43:06.446Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T20:43:06.446Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T20:43:11.014Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:43:40.264Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:45:40.362Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:46:18.775Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:46:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:46:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:47:17.672Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:51:09.091Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:51:09.091Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:51:09.419Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:53:06.555Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T20:53:06.555Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T20:55:40.463Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T20:56:18.775Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:56:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:56:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:57:17.672Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T20:57:28.668Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T20:57:28.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T20:57:28.990Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:03:06.486Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T21:03:06.486Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T21:05:40.342Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:06:18.775Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:06:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:06:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:07:17.672Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:07:28.668Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:07:28.668Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:07:28.994Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:12:06.415Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T21:12:06.416Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T21:15:40.431Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:16:18.775Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:16:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:16:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:17:17.672Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:17:28.669Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:17:28.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:17:28.993Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:38.853Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:19:38.853Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:38.853Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:38.853Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19635637"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:19:38.898Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:19:38.898Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19635637"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:19:38.898Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:38.914Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:38.914Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:19:38.960Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:19:38.960Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:19:38.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:19:38.961Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:19:38.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:19:38.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:19:40.216Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:44.204Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:45.202Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:46.242Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:47.034Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:19:47.034Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:19:47.043Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:19:47.043Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:19:47.043Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:19:47.044Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:19:47.299Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:16.011Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:20:16.011Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:16.011Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19651538"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:20:16.044Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:20:16.044Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:16.044Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19651538"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:20:16.057Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:16.057Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:20:16.161Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:20:16.161Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:20:16.161Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:20:16.162Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:20:16.408Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:16.657Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:21.595Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:22.641Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:23.704Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:24.450Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:20:24.451Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:20:24.460Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:20:24.461Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:20:24.461Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:20:24.461Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:20:24.712Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:22:06.465Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 30, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T21:22:06.465Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T21:25:40.383Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:18.775Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:26:18.775Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:26:18.776Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:26:41.682Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:26:41.682Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:41.683Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:41.683Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19651774"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:26:41.732Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:26:41.733Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:41.732Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19651774"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:26:41.745Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:41.746Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:26:41.753Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:26:41.753Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:26:41.762Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:26:41.762Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:26:41.762Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:26:41.762Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:26:42.996Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:46.760Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:47.740Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:48.799Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:49.805Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:50.636Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:26:50.636Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:26:50.646Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:26:50.646Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:26:50.646Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:26:50.646Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:26:50.903Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:17.432Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:27:17.435Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:17.435Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:17.435Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19653981"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:27:17.469Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:27:17.469Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:17.469Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19653981"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:27:17.482Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:17.483Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:27:17.560Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:27:17.561Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:27:17.561Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:27:17.561Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:27:17.673Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:27:17.737Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:18.033Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:23.084Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:24.165Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:25.153Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:25.962Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:25.963Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:27:25.972Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:27:25.973Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:27:25.973Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:27:25.973Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:27:26.210Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:27:28.669Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:27:28.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:27:28.927Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:00.234Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:30:00.234Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:00.235Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19654206"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:30:00.282Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:30:00.282Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:00.282Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19654206"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:30:00.297Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:00.299Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:00.304Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:30:00.304Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:30:00.310Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:30:00.310Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:00.310Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:00.310Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:01.650Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:05.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:06.952Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:07.975Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:08.745Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:08.745Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:08.760Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:08.761Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:08.761Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:08.761Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:30:09.015Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:36.649Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:30:36.649Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:36.649Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:36.649Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655150"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:30:36.696Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:30:36.696Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:36.696Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655150"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:30:36.712Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:36.714Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:36.762Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:30:36.762Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:30:36.773Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:36.774Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:36.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:36.774Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:30:38.047Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:42.974Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:44.180Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:45.012Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:45.806Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:45.806Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:30:45.816Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:30:45.817Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:45.817Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:30:45.817Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:30:46.072Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:32:06.870Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 1, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 29, "workflow_runs_in_progress": 0, "workflow_runs_queued": 0, "workflow_runs_unknown": 0}
2020-11-19T21:32:06.870Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T21:35:40.045Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.046Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.059Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.059Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.077Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.077Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.107Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.107Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.158Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.158Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.246Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.246Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.415Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.415Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:40.744Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:40.744Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:41.392Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:41.392Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:42.682Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:42.682Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:45.253Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:45.254Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:35:50.383Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:35:50.383Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:36:00.632Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:36:00.633Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:36:18.775Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:36:18.776Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:36:18.776Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:36:21.121Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:36:21.122Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:37:02.091Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:37:02.091Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:37:17.673Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:37:28.669Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 1, "available": 1}
2020-11-19T21:37:28.669Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:37:28.678Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:37:28.678Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:38:24.021Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:38:24.021Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:41:00.188Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:41:00.188Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:06.594Z    DEBUG   controllers.HorizontalRunnerAutoscaler  Calculated desired replicas {"computed_replicas_desired": 2, "spec_replicas_min": 1, "spec_replicas_max": 40, "workflow_runs_completed": 29, "workflow_runs_in_progress": 1, "workflow_runs_queued": 1, "workflow_runs_unknown": 0}
2020-11-19T21:42:06.605Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "f8f9d7b8-4e46-46ff-acaf-0e405f774cf5", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerDeployment", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerdeployments"}}
2020-11-19T21:42:06.607Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "f8f9d7b8-4e46-46ff-acaf-0e405f774cf5", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.612Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "f34b4ece-ed4a-4122-bc97-3c6224b1bc78", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerDeployment", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerdeployments"}}
2020-11-19T21:42:06.613Z    INFO    runnerdeployment-resource   validate resource to be updated {"name": "runner-infra"}
2020-11-19T21:42:06.614Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerdeployment", "UID": "f34b4ece-ed4a-4122-bc97-3c6224b1bc78", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.665Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "86cc0779-956a-419b-a8b7-3d7c84b54a83", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerReplicaSet", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerreplicasets"}}
2020-11-19T21:42:06.666Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "86cc0779-956a-419b-a8b7-3d7c84b54a83", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.669Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "0b80bff8-14d9-4ed6-a5a6-7fe306903e7a", "kind": "actions.summerwind.dev/v1alpha1, Kind=RunnerReplicaSet", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runnerreplicasets"}}
2020-11-19T21:42:06.670Z    INFO    runnerreplicaset-resource   validate resource to be updated {"name": "runner-infra-hr9bs"}
2020-11-19T21:42:06.670Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runnerreplicaset", "UID": "0b80bff8-14d9-4ed6-a5a6-7fe306903e7a", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.678Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:42:06.760Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 1}
2020-11-19T21:42:06.760Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "horizontalrunnerautoscaler", "request": "runner-infra/runner-infra"}
2020-11-19T21:42:06.761Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:42:06.764Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "cd6e1dcf-fb2b-40c4-b6e1-016aa641263f", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T21:42:06.764Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "cd6e1dcf-fb2b-40c4-b6e1-016aa641263f", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.767Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "e151bb95-40a2-4100-81aa-aa1fd228bdd3", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T21:42:06.768Z    INFO    runner-resource validate resource to be created {"name": "runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:06.768Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "e151bb95-40a2-4100-81aa-aa1fd228bdd3", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.860Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:06.860Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "d1060929-28cb-42ff-a567-698198bb0aef", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T21:42:06.860Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:06.861Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/mutate-actions-summerwind-dev-v1alpha1-runner", "UID": "d1060929-28cb-42ff-a567-698198bb0aef", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.869Z    DEBUG   controller-runtime.webhook.webhooks received request    {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "0f14ad47-d867-40f5-8243-5cb9cba0a055", "kind": "actions.summerwind.dev/v1alpha1, Kind=Runner", "resource": {"group":"actions.summerwind.dev","version":"v1alpha1","resource":"runners"}}
2020-11-19T21:42:06.869Z    INFO    runner-resource validate resource to be updated {"name": "runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:06.869Z    DEBUG   controller-runtime.webhook.webhooks wrote response  {"webhook": "/validate-actions-summerwind-dev-v1alpha1-runner", "UID": "0f14ad47-d867-40f5-8243-5cb9cba0a055", "allowed": true, "result": {}, "resultError": "got runtime.Object without object metadata: &Status{ListMeta:ListMeta{SelfLink:,ResourceVersion:,Continue:,RemainingItemCount:nil,},Status:,Message:,Reason:,Details:nil,Code:200,}"}
2020-11-19T21:42:06.877Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:06.878Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:06.878Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:06.879Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:42:06.879Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:06.879Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:06.880Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:06.890Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:06.890Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:06.891Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:06.891Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659234"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:06.899Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:06.899Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:06.960Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:06.960Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:06.974Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:06.974Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:06.989Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:06.989Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:07.080Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:07.080Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:07.248Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:07.248Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:07.577Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:07.577Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:08.226Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:08.226Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:09.515Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:09.516Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:12.085Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:12.085Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:17.213Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:17.213Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:27.462Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:27.462Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:48.296Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659235"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:42:48.296Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:48.296Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:48.296Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:48.345Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "repository": "some-org/repo-a"}
2020-11-19T21:42:48.345Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:48.346Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-fbstl","uid":"cce21018-abbf-46a0-b722-2523769b8502","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659485"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-fbstl'"}
2020-11-19T21:42:48.359Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:48.359Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:48.359Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:48.645Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:42:48.645Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:48.900Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:42:48.900Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:54.382Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:42:54.382Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:55.396Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:42:55.396Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:56.431Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:42:56.431Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:57.211Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:42:57.212Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:57.221Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:57.222Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:42:57.222Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:42:57.222Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:42:57.515Z    ERROR   controllers.Runner  Failed to check if runner is busy   {"runner": "runner-infra/runner-infra-hr9bs-fbstl", "error": "runner not found"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:197
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:42:57.516Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:43:29.539Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-fbstl"}
2020-11-19T21:43:51.713Z    INFO    controllers.Runner  Updated registration token  {"runner": "runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:43:51.713Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19655384"}, "reason": "RegistrationTokenUpdated", "message": "Successfully update registration token"}
2020-11-19T21:43:51.713Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:43:51.713Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:43:52.041Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:43:52.041Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:43:52.042Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659865"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:43:52.074Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:43:52.075Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:43:52.075Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659865"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:43:52.094Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:43:52.095Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:43:52.103Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:43:52.106Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:43:52.106Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:43:52.106Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:43:52.437Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:43:52.714Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:43:57.955Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:43:59.001Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:00.012Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:00.812Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:00.812Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:44:00.823Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:44:00.823Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:44:00.823Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:44:00.825Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:44:01.112Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:31.886Z    INFO    controllers.Runner  Deleted runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:44:31.886Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:31.886Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659940"}, "reason": "PodDeleted", "message": "Deleted pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:44:31.918Z    INFO    controllers.Runner  Created runner pod  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "repository": "some-org/repo-a"}
2020-11-19T21:44:31.918Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:31.919Z    DEBUG   controller-runtime.manager.events   Normal  {"object": {"kind":"Runner","namespace":"runner-infra","name":"runner-infra-hr9bs-x687s","uid":"909becc4-4e18-4749-9c54-bdad6c7a0f31","apiVersion":"actions.summerwind.dev/v1alpha1","resourceVersion":"19659940"}, "reason": "PodCreated", "message": "Created pod 'runner-infra-hr9bs-x687s'"}
2020-11-19T21:44:31.931Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:31.932Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:44:31.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:44:31.961Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:44:31.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:44:31.961Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:44:31.965Z    ERROR   controllers.Runner  Failed to update runner status  {"runner": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
github.com/summerwind/actions-runner-controller/controllers.(*RunnerReconciler).Reconcile
    /workspace/controllers/runner_controller.go:160
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:256
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:44:31.965Z    ERROR   controller-runtime.controller   Reconciler error    {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s", "error": "Operation cannot be fulfilled on runners.actions.summerwind.dev \"runner-infra-hr9bs-x687s\": the object has been modified; please apply your changes to the latest version and try again"}
github.com/go-logr/zapr.(*zapLogger).Error
    /go/pkg/mod/github.com/go-logr/[email protected]/zapr.go:128
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:258
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:232
sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).worker
    /go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:211
k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:152
k8s.io/apimachinery/pkg/util/wait.JitterUntil
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:153
k8s.io/apimachinery/pkg/util/wait.Until
    /go/pkg/mod/k8s.io/[email protected]/pkg/util/wait/wait.go:88
2020-11-19T21:44:33.216Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:37.632Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:38.666Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:39.630Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:40.459Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:44:40.460Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}
2020-11-19T21:44:40.468Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:44:40.469Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerdeployment", "request": "runner-infra/runner-infra"}
2020-11-19T21:44:40.469Z    INFO    controllers.RunnerReplicaSet    debug   {"runner": "runner-infra/runner-infra-hr9bs", "desired": 2, "available": 2}
2020-11-19T21:44:40.469Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runnerreplicaset", "request": "runner-infra/runner-infra-hr9bs"}
2020-11-19T21:44:40.721Z    DEBUG   controller-runtime.controller   Successfully Reconciled {"controller": "runner", "request": "runner-infra/runner-infra-hr9bs-x687s"}

The error is here: https://github.com/summerwind/actions-runner-controller/blob/ee8fb5a3886ef5a75df5c126bcd3c846e13c801e/github/github.go#L87

The token does not get refreshed for a 10 minute interval. The old token is returned and the reconcile function returns with Requeue: true - after the token update function is called. If you reduce this 10 minute interval - this should repair this problem. @mumoshu

Since token expiration is not a huge deal - the runner can still make calls even if the registration token has expired, I suggest we change this function to:

    if ok && rt.GetExpiresAt().After(time.Now()) {
        return rt, nil
    }
Was this page helpful?
0 / 5 - 0 ratings

Related issues

hdoinfodation picture hdoinfodation  ·  4Comments

BrendanGalloway picture BrendanGalloway  ·  3Comments

sripberger picture sripberger  ·  4Comments

Puneeth-n picture Puneeth-n  ·  3Comments

kimxogus picture kimxogus  ·  3Comments