update agents resources configurations #973
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish services | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
helm: | |
if: github.ref_type == 'tag' || github.ref == 'refs/heads/develop' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USER }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
flavor: | | |
latest=false | |
tags: | | |
type=semver,pattern={{version}} | |
- name: Create and push chart | |
if: github.ref_type == 'tag' | |
run: | | |
TAG_NAME=${GITHUB_REF#refs/tags/} | |
VERSION=${{ steps.meta.outputs.tags }} | |
REPO=cbartifactory | |
cd ${{ github.workspace }}/charts/cbcontainers-operator/cbcontainers-operator-chart | |
helm package . --version $VERSION --app-version $TAG_NAME | |
helm push *.tgz oci://registry-1.docker.io/$REPO | |
cd ${{ github.workspace }}/charts/cbcontainers-agent/cbcontainers-agent-chart | |
helm package . --version $VERSION --app-version $VERSION | |
helm push *.tgz oci://registry-1.docker.io/$REPO | |
- name: Develop branch create and push chart | |
if: github.ref == 'refs/heads/develop' | |
run: | | |
VERSION=1.99.99 | |
REPO=cbartifactory | |
cd ${{ github.workspace }}/charts/cbcontainers-operator/cbcontainers-operator-chart | |
helm package . --version $VERSION --app-version develop | |
helm push *.tgz oci://registry-1.docker.io/$REPO | |
cd ${{ github.workspace }}/charts/cbcontainers-agent/cbcontainers-agent-chart | |
helm package . --version $VERSION --app-version main | |
helm push *.tgz oci://registry-1.docker.io/$REPO | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USER }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Docker meta | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: | | |
octarine-operator | |
flavor: | | |
latest=false | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.6 | |
- name: Setup Operator SDK | |
run: | | |
mkdir /tmp/operator-sdk | |
git clone -b v1.32.0 https://github.com/operator-framework/operator-sdk /tmp/operator-sdk | |
cd /tmp/operator-sdk | |
make install | |
cd - | |
- run: make generate | |
- run: make manifests | |
- run: make test | |
- name: Build and push | |
run: make docker-build docker-push IMG=cbartifactory/${{ steps.meta.outputs.tags }} VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} |