Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Update config/ so make bundle can update bundle/ #216

Merged
merged 8 commits into from
Jun 6, 2023

Commits on May 31, 2023

  1. Update config/ so it can generate bundle/

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    e462d2e View commit details
    Browse the repository at this point in the history
  2. Remove duplicate RELATED_IMAGE_TACKLE_POSTGRES from csv template.

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    d8e8707 View commit details
    Browse the repository at this point in the history
  3. update relatedImages in tools/templates

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    c66bed6 View commit details
    Browse the repository at this point in the history
  4. add config/ to ci

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    6b87576 View commit details
    Browse the repository at this point in the history
  5. move createdAt workaround to Makefile

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    0d4ff3e View commit details
    Browse the repository at this point in the history
  6. fix make bundle IMG=somethingelse:tag override.

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    c871e72 View commit details
    Browse the repository at this point in the history
  7. remove namespace: system

    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    2e43d22 View commit details
    Browse the repository at this point in the history
  8. Dockerfile: Migrate ansible-operator image to v1.28.1

    Following migration guide from v1.22.0 to v1.28.1
    https://sdk.operatorframework.io/docs/upgrading-sdk-version/
    
    - v1.23.0
      - Upgrade kustomize versions from v3.8.7 to v4.5.5
      - In the `molecule/default`, replace `--load_restrictor none .` with `--load-restrictor LoadRestrictionsNone`
    
    - v1.24.0
      In Ansible & Helm-based operators, if you need to support arm64, add the following
      `| sed 's/aarch64/arm64/'`
    
      on the following line
    
      `ARCH := $(shell uname -m | sed 's/x86_64/amd64/')`
    
      The resulting line should look like this
    
      `ARCH := $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')`
    
    - v1.25.0
      Add docker-buildx target
    
    - v1.26.0
      update ansible operator Makefile’s run target
    
    - v1.28.0
      Upgrade kubernetes.core collection to v2.4.0
    
    Signed-off-by: Tiger Kaovilai <[email protected]>
    kaovilai committed May 31, 2023
    Configuration menu
    Copy the full SHA
    9966346 View commit details
    Browse the repository at this point in the history