terraform.yaml 580 B

12345678910111213141516171819202122232425
  1. apiVersion: infra.contrib.fluxcd.io/v1alpha1
  2. kind: Terraform
  3. metadata:
  4. name: tf-harbor
  5. spec:
  6. storeReadablePlan: human
  7. path: dotfiles/maintenance/harbor
  8. interval: 10m
  9. retryInterval: 10m
  10. sourceRef:
  11. kind: GitRepository
  12. name: flux-system
  13. namespace: flux-system
  14. runnerPodTemplate:
  15. spec:
  16. volumes:
  17. - name: terraform-configuration
  18. configMap:
  19. name: terraform-configuration
  20. volumeMounts:
  21. - name: terraform-configuration
  22. mountPath: /home/runner/.terraformrc
  23. subPath: .terraformrc
  24. readOnly: true