Skip to content

Commit

Permalink
release fix-name-length-limitation (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
isindir authored Nov 8, 2019
1 parent 8736ba1 commit 719eff5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
16 changes: 15 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
K8S_VERSION: v1.15.2
KIND_VERSION: v0.4.0
HELM_VERSION: v2.14.3
GOLANG_VERSION: 1.12.9
GOLANG_VERSION: 1.13.4
OPERATOR_SDK_VERSION: 0.10.0
SOPS_VERSION: 3.3.1

Expand Down Expand Up @@ -172,6 +172,20 @@ jobs:
echo "Expected number of secrets in sops namespace is 3 - Failed"
exit 1
fi
# Delete to check GC works
kubectl delete -f 00init.enc.yaml --namespace sops
sleep 15
kubectl get sops --namespace sops
echo
kubectl get secrets --namespace sops
echo
export SECRETS_NUMBER=$( kubectl get secrets --namespace sops \
| awk '$0!~/default-token/ && $0!~/NAME/ { print $1; }' \
| wc -l )
if [[ $SECRETS_NUMBER -ne 0 ]]; then
echo "Expected number of secrets in sops namespace is 0 - Failed"
exit 1
fi
rm -fr $GNUPGHOME
- run:
name: Run Tests
Expand Down
4 changes: 2 additions & 2 deletions chart/sops-secrets-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
version: 0.1.5
appVersion: 0.0.7
version: 0.1.6
appVersion: 0.0.8
description: sops secrets operator
name: sops-secrets-operator
sources:
Expand Down
2 changes: 1 addition & 1 deletion chart/sops-secrets-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: isindir/sops-secrets-operator
tag: 0.0.7
tag: 0.0.8
pullPolicy: AlwaysPull

imagePullSecrets: []
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module github.com/isindir/sops-secrets-operator

require (
github.com/Azure/azure-sdk-for-go v30.0.0+incompatible // indirect
github.com/NYTimes/gziphandler v1.0.1 // indirect
github.com/aws/aws-sdk-go v1.19.41 // indirect
github.com/dimchansky/utfbom v1.1.0 // indirect
github.com/fatih/color v1.7.0 // indirect
Expand Down Expand Up @@ -48,3 +47,5 @@ replace (
)

replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.0

go 1.13
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package version

var (
// Version of the operator
Version = "0.0.7"
Version = "0.0.8"
)

0 comments on commit 719eff5

Please sign in to comment.