Skip to content

Commit

Permalink
allow empty status informers (#102)
Browse files Browse the repository at this point in the history
* allow empty status informers

* add tests

* additional feedback

* address additional logging feedback
  • Loading branch information
Craig O'Donnell authored Oct 13, 2023
1 parent 5a42529 commit 4e3d3d0
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 4 deletions.
84 changes: 82 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ jobs:
exit 1
fi
if ! echo $output | grep -q 'statusInformers: null'; then
printf "default statusInformers should be null:\n\n%s\n\n" "$output"
exit 1
fi
output=$(helm template oci://ttl.sh/automated-${{ github.run_id }}/replicated --version 0.0.0 --set integration.enabled=true)
if ! echo $output | grep -q integration-enabled; then
Expand Down Expand Up @@ -155,6 +160,17 @@ jobs:
fi
cat << EOF > test-values.yaml
statusInformers: []
EOF
output=$(helm template oci://ttl.sh/automated-${{ github.run_id }}/replicated --version 0.0.0 --values test-values.yaml)
if ! echo $output | grep -q 'statusInformers: \[\]'; then
printf "user-set empty statusInformers should exist:\n\n%s\n\n" "$output"
exit 1
fi
create-test-release:
runs-on: ubuntu-22.04
needs: [ build-and-push-e2e ]
Expand Down Expand Up @@ -317,7 +333,7 @@ jobs:
helm upgrade test-chart oci://registry.replicated.com/$APP_SLUG/$CHANNEL_SLUG/test-chart --set replicated.integration.enabled=false --set replicated.versionLabel=1.0.0 --wait --timeout 2m
COUNTER=1
while [ kubectl get pods -l app.kubernetes.io/name=replicated -o jsonpath='{.items[0].metadata.name}' | grep -q $oldpodname ]; do
while kubectl get pods -l app.kubernetes.io/name=replicated -o jsonpath='{.items[0].metadata.name}' | grep -q $oldpodname; do
((COUNTER += 1))
if [ $COUNTER -gt 60 ]; then
echo "Pod did not restart after upgrade"
Expand Down Expand Up @@ -361,7 +377,7 @@ jobs:
kubectl rollout status deployment replicated --timeout=2m
COUNTER=1
while [ kubectl get pods -l app.kubernetes.io/name=replicated -o jsonpath='{.items[0].metadata.name}' | grep -q $oldpodname ]; do
while kubectl get pods -l app.kubernetes.io/name=replicated -o jsonpath='{.items[0].metadata.name}' | grep -q $oldpodname; do
((COUNTER += 1))
if [ $COUNTER -gt 60 ]; then
echo "Pod did not restart after upgrade"
Expand All @@ -385,6 +401,70 @@ jobs:
kubectl wait --for=delete deployment/test-chart --timeout=2m
kubectl wait --for=delete deployment/replicated --timeout=2m
# validate status informers
- name: Create empty status informers for validation
run: |
cat << EOF > test-values.yaml
replicated:
statusInformers: []
EOF
- name: Install via Helm as subchart in production mode and pass empty status informers
run: |
helm install test-chart oci://registry.replicated.com/$APP_SLUG/$CHANNEL_SLUG/test-chart --set replicated.integration.enabled=false -f test-values.yaml --wait --timeout 2m
COUNTER=1
while ! kubectl logs deploy/replicated | grep -qv 'Generating status informers from Helm release'; do
((COUNTER += 1))
if [ $COUNTER -gt 60 ]; then
echo "Did not receive empty status informers"
kubectl logs deploy/replicated
exit 1
fi
sleep 1
done
- name: Upgrade via Helm as subchart in production mode to use default status informers
run: |
helm upgrade test-chart oci://registry.replicated.com/$APP_SLUG/$CHANNEL_SLUG/test-chart --set replicated.integration.enabled=false --wait --timeout 2m
COUNTER=1
while ! kubectl logs deploy/replicated | grep -q 'Generating status informers from Helm release'; do
((COUNTER += 1))
if [ $COUNTER -gt 60 ]; then
echo "Did not receive default status informers"
kubectl logs deploy/replicated
exit 1
fi
sleep 1
done
- name: Uninstall test-chart via Helm
run: helm uninstall test-chart --wait --timeout 2m

- name: Install via kubectl as subchart in production mode and pass empty status informers
run: |
helm template test-chart oci://registry.replicated.com/$APP_SLUG/$CHANNEL_SLUG/test-chart --set replicated.integration.enabled=false -f test-values.yaml | kubectl apply -f -
kubectl rollout status deployment test-chart --timeout=2m
kubectl rollout status deployment replicated --timeout=2m
COUNTER=1
while ! kubectl logs deploy/replicated | grep -qv 'Generating status informers from Helm release'; do
((COUNTER += 1))
if [ $COUNTER -gt 60 ]; then
echo "Did not receive empty status informers"
kubectl logs deploy/replicated
exit 1
fi
sleep 1
done
- name: Uninstall test-chart via kubectl
run: |
helm template test-chart oci://registry.replicated.com/$APP_SLUG/$CHANNEL_SLUG/test-chart --set replicated.integration.enabled=false -f test-values.yaml | kubectl delete -f -
kubectl wait --for=delete deployment/test-chart --timeout=2m
kubectl wait --for=delete deployment/replicated --timeout=2m
- name: Remove Cluster
uses: replicatedhq/replicated-actions/[email protected]
if: ${{ success() || cancelled() }}
Expand Down
2 changes: 2 additions & 0 deletions chart/templates/replicated-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ stringData:
{{- if .Values.statusInformers }}
statusInformers:
{{- .Values.statusInformers | toYaml | nindent 6 }}
{{- else }}
statusInformers: {{ .Values.statusInformers | toYaml }}
{{- end }}
replicatedID: {{ .Values.replicatedID | default "" | quote }}
appID: {{ .Values.appID | default "" | quote }}
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ releaseCreatedAt: ""
releaseNotes: ""
versionLabel: ""
parentChartURL: ""
statusInformers: []
statusInformers: null
replicatedAppEndpoint: ""

serviceAccountName: ""
Expand Down
2 changes: 1 addition & 1 deletion pkg/apiserver/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func bootstrap(params APIServerParams) error {

// if no status informers are provided, generate them from the helm release
informers := params.StatusInformers
if len(informers) == 0 && helm.IsHelmManaged() {
if informers == nil && helm.IsHelmManaged() {
helmRelease, err := helm.GetRelease(helm.GetReleaseName())
if err != nil {
return errors.Wrap(err, "failed to get helm release")
Expand Down
2 changes: 2 additions & 0 deletions pkg/appstate/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ func resourceStatesApplyNew(resourceStates types.ResourceStates, resourceState t
}

func GenerateStatusInformersForManifest(manifest string) []types.StatusInformerString {
logger.Info("Generating status informers from Helm release")

informers := []types.StatusInformerString{}

for _, doc := range strings.Split(manifest, "\n---\n") {
Expand Down

0 comments on commit 4e3d3d0

Please sign in to comment.