Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GalleyBytes/terraform-operator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.15.1
Choose a base ref
...
head repository: GalleyBytes/terraform-operator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 12 files changed
  • 1 contributor

Commits on Oct 26, 2023

  1. make bundle v0.15.1

    isaaguilar committed Oct 26, 2023
    Copy the full SHA
    1a5d46a View commit details

Commits on Oct 28, 2023

  1. fix typoed crd

    isaaguilar committed Oct 28, 2023
    Copy the full SHA
    0e509b4 View commit details
  2. make bundle v0.16.0

    isaaguilar committed Oct 28, 2023
    Copy the full SHA
    e90bc81 View commit details

Commits on Mar 13, 2024

  1. return on failure in background

    isaaguilar committed Mar 13, 2024
    Copy the full SHA
    a38bf84 View commit details
  2. make bundle v0.17.0

    isaaguilar committed Mar 13, 2024
    Copy the full SHA
    1ea0d34 View commit details

Commits on May 16, 2024

  1. Copy the full SHA
    b5160a9 View commit details

Commits on May 17, 2024

  1. enable setting the require-approval plugin image

    isaaguilar committed May 17, 2024
    Copy the full SHA
    17849e6 View commit details
  2. make bundle v0.17.1

    isaaguilar committed May 17, 2024
    Copy the full SHA
    8da1a61 View commit details
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Build Terraform Operator Container Image

on: [push]
on:
pull_request:
branches:
- master
push:
tags:
- '*'

jobs:
Terraform-Operator-AMD_x86_64:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ Another simple method is to install the resources under `deploy` & `deploy/crds`
```bash
git clone https://github.com/galleybytes/terraform-operator.git
cd terraform-operator
kubectl apply -f deploy/bundles/v0.15.0/v0.15.0.yaml
kubectl apply -f deploy/bundles/v0.17.1/v0.17.1.yaml
```

See [more installation options](http://tf.galleybytes.com/docs/getting-started/installation/).
3 changes: 3 additions & 0 deletions cmd/manager/main.go
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ func main() {
var inheritNodeSelector bool
var inheritAffinty bool
var inheritTolerations bool
var requireApprovalImage string

flag.StringVar(&metricsAddr, "metrics-bind-address", ":8080", "The address the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
@@ -54,6 +55,7 @@ func main() {
flag.BoolVar(&inheritNodeSelector, "inherit-node-selector", false, "Use the controller's nodeSelector for every task created by the controller")
flag.BoolVar(&inheritAffinty, "inherit-affinity", false, "Use the controller's affinity rules for every task created by the controller")
flag.BoolVar(&inheritTolerations, "inherit-tolerations", false, "Use the controller's tolerations for every task created by the controller")
flag.StringVar(&requireApprovalImage, "require-approval-image", "ghcr.io/galleybytes/require-approval:0.2.0", "Plugin image for require-approval")
opts := zap.Options{
Development: true,
Level: zapcore.DebugLevel,
@@ -108,6 +110,7 @@ func main() {
NodeSelectorCacheKey: "inherited_nodeselector",
InheritTolerations: inheritTolerations,
TolerationsCacheKey: "inherited_tolerations",
RequireApprovalImage: requireApprovalImage,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "Cluster")
os.Exit(1)
Loading