bc-sysstat.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. apiVersion: v1
  2. kind: List
  3. metadata: {}
  4. items:
  5. - apiVersion: image.openshift.io/v1
  6. kind: ImageStream
  7. metadata:
  8. name: ubi-minimal
  9. spec:
  10. lookupPolicy:
  11. local: false
  12. tags:
  13. - name: latest
  14. from:
  15. kind: DockerImage
  16. name: registry.redhat.io/ubi9/ubi-minimal:latest
  17. importPolicy: {}
  18. referencePolicy:
  19. type: Source
  20. - apiVersion: image.openshift.io/v1
  21. kind: ImageStream
  22. metadata:
  23. name: collector-sysstat
  24. spec:
  25. lookupPolicy:
  26. local: false
  27. tags:
  28. - name: latest
  29. - apiVersion: build.openshift.io/v1
  30. kind: BuildConfig
  31. metadata:
  32. name: collector-sysstat
  33. labels:
  34. build: collector-sysstat
  35. build-config: collector-sysstat
  36. spec:
  37. output:
  38. to:
  39. kind: ImageStreamTag
  40. name: collector-sysstat:latest
  41. source:
  42. git:
  43. uri: https://git.p0f.net/gregab/linux-metrics-exporter.git
  44. ref: main
  45. contextDir: images
  46. strategy:
  47. type: Docker
  48. dockerStrategy:
  49. dockerfilePath: Containerfile-sysstat
  50. from:
  51. kind: ImageStreamTag
  52. name: ubi-minimal:latest