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

Testing secret op pipeline *DO NOT MERGE* #456

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ jobs:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get -y update
sudo apt-get -y install helm
sudo apt-get -y install libkrb5-dev
sudo apt-get -y install protobuf-compiler
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
fi

Expand Down
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
# It is available from Nixpkgs as `yq-go` (`nix shell nixpkgs#yq-go`)
# This script also requires `jq` https://stedolan.github.io/jq/

Break the GitHib action!!!

.PHONY: build publish
.PHONY: build, publish

TAG := $(shell git rev-parse --short HEAD)
OPERATOR_NAME := secret-operator
Expand Down
6 changes: 3 additions & 3 deletions deploy/helm/secret-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ image:

csiProvisioner:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-provisioner
tag: v4.0.1
repository: docker.stackable.tech/k8s/csi-provisioner
tag: v5.0.1
pullPolicy: IfNotPresent
resources:
requests:
Expand All @@ -19,7 +19,7 @@ csiProvisioner:
memory: 128Mi
csiNodeDriverRegistrar:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-node-driver-registrar
repository: docker.stackable.tech/k8s/csi-node-driver-registrar
tag: v2.10.1
pullPolicy: IfNotPresent
resources:
Expand Down
Loading