Skip to content
Snippets Groups Projects
  1. Sep 09, 2019
    • sh0rez's avatar
      chore(ci/cd): breaking the circle (#990) · db8880e6
      sh0rez authored
      * chore(ci/cd): breaking the circle
      
      As the trial period for drone.io went really well (not a single failed build,
      apart from merge-failures), I think it is time to make the switch to the new,
      native ARM and much more performant platform.
      
      This should fix all kinds of issues and be a solid architecture for the future
      to level up our CI/CD in terms of performance and reliability.
      
      * chore(packaging): drone.io check stage
      
      Adds a check stage to the drone pipeline to lint and test
      Unverified
      db8880e6
    • sh0rez's avatar
      chore(packaging): simplify tagging (#989) · f6468f16
      sh0rez authored
      Simplifies tagging by removing conditionals and always publishing as `latest`
      and for images also `master` on all builds (including tags).
      
      Also fixes the tagging of the docker-driver, latest tag is back!
      Unverified
      f6468f16
  2. Sep 06, 2019
  3. Sep 05, 2019
  4. Aug 28, 2019
    • Sandeep Sukhani's avatar
      vendoring: update cortex to latest master (#938) · b687ec6e
      Sandeep Sukhani authored
      * update cortex to latest master
      
      using v3.4.0-rc.1 for go.etcd.io/etcd
      v0.0.2 for github.com/prometheus/procfs
      v1.0.0 for github.com/prometheus/client_golang
      latest master for github.com/weaveworks/common with changes from https://github.com/weaveworks/common/pull/153
      
      * fixed failing tests
      
      * use large instance for test and lint jobs in CircleCI
      
      * running only 6 test binaries in parallel
      
      * removed resource type change for CircleCI
      
      * changed GOGC to 10 for lint makefile target
      b687ec6e
  5. Aug 15, 2019
  6. Aug 12, 2019
    • Robert Fratto's avatar
      Makefile: disable building promtail with systemd support on non-amd64 platforms (#888) · 600b6cf4
      Robert Fratto authored
      This commit introduces a stopgap to get ARM builds working by
      temporarily disabling journal reading support on ARM platforms.
      Unverified
      600b6cf4
    • Robert Fratto's avatar
      Makefile: build promtail with CGO_ENABLED if GOHOSTOS=GOOS=linux (#809) · 297f0e9d
      Robert Fratto authored
      This commit modifies the Makefile to build promtail with CGO_ENABLED if
      both GOHOSTOS and GOOS are set to linux.
      
      To facilitate the Docker container utilizing the journal support,
      the container for promtail had to be modified to be based on top of
      debian. The sd-journal library depends on libsystemd.so being present
      at runtime. As alpine currently does not have a package for systemd,
      the easiest approach is to change the base image to debian:stretch-slim.
      A future solution for providing an alpine-based build will be considered
      in the future and discussion for the approach will be tracked in #838.
      
      This commit also updates the Dockerfile to default to using the
      latest loki-build-image. If a specific version is required, it should
      be provided as a build arg to docker build.
      Unverified
      297f0e9d
  7. Aug 02, 2019
  8. Aug 01, 2019
    • Edward Welch's avatar
      fix(promtail): Improving promtail asset generation makefile targets · 1fc27862
      Edward Welch authored
      * Primarily this stop deletion of the generated file on a `make clean` which keeps the working directory diff free
      * The generated file now checks all the input files to see if there are changes to determine if the target needs to be run
      * Updated check-generated-files to include the promtail generated ui file
      1fc27862
    • sh0rez's avatar
      chore(packaging): fix image name (#837) · ce6ec3df
      sh0rez authored
      :middle_finger: 
      Unverified
      ce6ec3df
    • sh0rez's avatar
      chore: deploy (#836) · ace59932
      sh0rez authored
      - bump build image to 0.4.0
      - re-gen protos
      - re-add deploy task
      Unverified
      ace59932
    • sh0rez's avatar
      chore(packaging/docker): Support multiple architectures (#762) · b887602e
      sh0rez authored
      This finally adds support for multiple architectures! :tada: 
      
      Images are now built using BuildKit (actually img), Dockerfiles were parameterized to allow this.
      Containers are still built on alpine, using QEMU and binfmt as a kernel compatibility layer to allow RUN steps in these.
      
      CircleCI has been fully revamped, to speed up builds and de-duplicate the configuration.
      Makefile has been extended with additional logic to shadow the multi-arch to non-CI users.
      
      Happy hacking on Raspberry Pi and friends :)
      Unverified
      b887602e
  9. Jul 29, 2019
  10. Jul 17, 2019
  11. Jul 16, 2019
  12. Jul 15, 2019
    • Robert Fratto's avatar
      Rollback changes to Makefile and build/Dockerfile from #730 (#758) · 8b06eb66
      Robert Fratto authored
      This commit rolls back the changes to the Makefile and build/Dockerfile
      that caused CGO_ENABLED=1 to be present during some builds. This commit
      causes the journal support to be disabled in any build produced by make.
      
      Journal support can still be enabled in a manual build:
      
        go build -o cmd/promtail/promtail cmd/promtail
      8b06eb66
    • Robert Fratto's avatar
      promtail: Add systemd journal support (#730) · 9eb3098d
      Robert Fratto authored
      Support for reading systemd journal entries has been added. 
      promtail will look for a job in scrape_configs with a journal key 
      to activate the journal target. 
      
      If GOOS=linux and CGO_ENABLED=1, promtail will now require 
      libsystemd headers to be available for building. If GOOS is not 
      linux or CGO_ENABLED is not 1, journal support will be unavailable
      and a log message will be printed warning the user that their config 
      file has journal tailing configured without it being built into promtail. 
      
      See docs/promtail-examples.md for a concrete example of 
      using journal support. 
      
      Other structural changes made: 
      
        1. Ability for checking if scrape.Config.ServiceDiscoveryConfig is 
           non-zero has been added. 
      
           This was chosen over making ServiceDiscoveryConfig a pointer
           as yaml.v2 cannot parse an inline struct into a pointer value. 
      
        2. Updated pipeline logger component name to journal_pipeline and
           file_pipeline for JournalTargetManager and FileTargetManager
           respectively.
      
        3. The positions file will now store positions as strings instead of 
           integers. Existing positions will be read in properly but written out 
           as strings the next time the positions file is saved. This is done to 
           be able to store the journal cursor, which is a string. The positions 
           API has been updated to support reading in the old integer values 
           and the new string values. 
      Unverified
      9eb3098d
  13. Jul 08, 2019
  14. Jun 13, 2019
  15. Jun 06, 2019
  16. Jun 03, 2019
  17. May 24, 2019
    • Cyril Tovena's avatar
      This add make target to deploy a dev version using helm (#586) · 4733221f
      Cyril Tovena authored
      * add a dev target to deploy the current image in k8s
      
      * impr/clients: Handle TLS config and MTLS for logcli and promtail (#540)
      
      * impr/clients: Handle TLS config and MTLS for logcli and promtail
      
      * fix/tls: Please gofmt...
      
      * impr/clients: use prometheus HTTPClientConfig for logcli and promtail
      
      * fix/promtail: Set proper Client config name
      
      * impr/promtail: Use prometheus HTTPClientConfig configuration
      
      * adapt with master
      
      * address review
      
      * fix conflicts
      
      * address requested changes
      
      * remove file
      
      * add helm dev targets
      
      * adding back assets
      
      * fix review comments
      
      * Review feedback
      Unverified
      4733221f
  18. May 16, 2019
  19. May 14, 2019
  20. May 08, 2019
  21. May 07, 2019
  22. May 06, 2019
  23. May 03, 2019
  24. Apr 11, 2019
  25. Apr 09, 2019
  26. Apr 03, 2019
  27. Mar 20, 2019
  28. Dec 20, 2018
Loading