deis / builder

Git server and application builder for Deis Workflow
https://deis.com
MIT License
40 stars 41 forks source link

Seeing lots of new noise in git push to builder #146

Closed krancour closed 8 years ago

krancour commented 8 years ago
[kent@mbp example-go]$ git push deis master
Warning: Permanently added '[deis.krancour.deis.ninja]:2222,[54.149.46.72]:2222' (RSA) to the list of known hosts.
Counting objects: 75, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (48/48), done.
Writing objects: 100% (75/75), 18.28 KiB | 0 bytes/s, done.
Total 75 (delta 30), reused 58 (delta 22)
Running in debug mode
Running git hook
read [0000000000000000000000000000000000000000,5450cbcdaaf9afe6fadd219c94ac9c449bd62413,refs/heads/master]
Workflow request /v2/hooks/push (body elided)
Workflow request POST /v2/hooks/config
{"receive_user":"kent","receive_repo":"deluxe-hardtack"}
got the following config back for app deluxe-hardtack: {Owner:kent App:deluxe-hardtack Values:map[] Memory:map[] CPU:map[] Tags:map[] UUID:0163d2b9-b0c6-4001-a020-eabae0fbb589 Created:2016-02-04 20:55:18 +0000 UTC Updated:2016-02-04 20:55:18 +0000 UTC}
running [git archive --format=tar.gz --output=deluxe-hardtack.tar.gz 5450cbcd] in directory /home/git/deluxe-hardtack.git
running [tar -xzf deluxe-hardtack.tar.gz -C /home/git/deluxe-hardtack.git/build/tmp366031923/] in directory /home/git/deluxe-hardtack.git
create bucket error: BucketAlreadyExists: The requested bucket name is not available.
remote: status code: 409, request id: JRAKQXCZXYUSZHC0
Uploading tar to http://10.3.0.76:9000/git/home/deluxe-hardtack:git-5450cbcd/tar
-----> Starting build... but first, coffee!
Starting pod slugbuild-deluxe-hardtack-5450cbcd-31a2b4b8
Pod spec: {
  "metadata": {
    "name": "slugbuild-deluxe-hardtack-5450cbcd-31a2b4b8",
    "namespace": "deis",
    "creationTimestamp": null,
    "labels": {
      "heritage": "deis",
      "version": "2.0.0-beta"
    }
  },
  "spec": {
    "volumes": [
      {
        "name": "minio-user",
        "secret": {
          "secretName": "minio-user"
        }
      }
    ],
    "containers": [
      {
        "name": "deis-slugbuilder",
        "image": "quay.io/deisci/slugbuilder:v2-beta",
        "env": [
          {
            "name": "DEBUG",
            "value": "1"
          },
          {
            "name": "TAR_URL",
            "value": "http://10.3.0.76:9000/git/home/deluxe-hardtack:git-5450cbcd/tar"
          },
          {
            "name": "put_url",
            "value": "http://10.3.0.76:9000/git/home/deluxe-hardtack:git-5450cbcd/push"
          }
        ],
        "resources": {},
        "volumeMounts": [
          {
            "name": "minio-user",
            "readOnly": true,
            "mountPath": "/var/run/secrets/object/store"
          }
        ],
        "imagePullPolicy": "Always"
      }
    ],
    "restartPolicy": "Never",
    "serviceAccountName": ""
  },
  "status": {}
}
arschles commented 8 years ago

@krancour this noise is intentional and the result of running builder with DEBUG=true in the environment. I've added it in the deis-dev chart, but not the official.

krancour commented 8 years ago

Ah. Well that explains that! Carry on!