Advertisement
Guest User

Untitled

a guest
May 20th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. apiVersion: apiextensions.k8s.io/v1beta1
  2. kind: CustomResourceDefinition
  3. metadata:
  4. creationTimestamp: null
  5. name: falcos.falco.org
  6. spec:
  7. group: falco.org
  8. names:
  9. kind: Falco
  10. listKind: FalcoList
  11. plural: falcos
  12. singular: falco
  13. scope: Namespaced
  14. subresources:
  15. status: {}
  16. version: v1alpha1
  17. versions:
  18. - name: v1alpha1
  19. served: true
  20. storage: true
  21. ---
  22. apiVersion: apps/v1
  23. kind: Deployment
  24. metadata:
  25. name: falco-operator
  26. spec:
  27. replicas: 1
  28. selector:
  29. matchLabels:
  30. name: falco-operator
  31. template:
  32. metadata:
  33. labels:
  34. name: falco-operator
  35. spec:
  36. serviceAccountName: falco-operator
  37. containers:
  38. - name: falco-operator
  39. # Replace this with the built image name
  40. image: docker.io/falcosecurity/falco-operator-helm:0.7.3
  41. ports:
  42. - containerPort: 60000
  43. name: metrics
  44. imagePullPolicy: Always
  45. env:
  46. - name: WATCH_NAMESPACE
  47. value: ""
  48. - name: POD_NAME
  49. valueFrom:
  50. fieldRef:
  51. fieldPath: metadata.name
  52. - name: OPERATOR_NAME
  53. value: "falco-operator"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement