This topic tells you how to troubleshoot using Tanzu Application Platform (commonly known as TAP).
Symptom:
You skipped relocating images from VMware Tanzu Network during installation, and now your installed packages are failing.
Explanation:
If you did not relocate the Tanzu Application Platform images during installation or upgrade, Tanzu Application Platform depends on VMware Tanzu Network for continued operation.
The Tanzu Application Platform releases have migrated from VMware Tanzu Network to the Broadcom Support Portal and Broadcom registry. Relying on VMware Tanzu Network for the Tanzu Application Platform images is no longer supported.
Solution:
Relocate the Tanzu Application Platform images by following the instructions in Migrate Tanzu Application Platform images from VMware Tanzu Network.
Events can highlight issues with components in a supply chain. For example, high occurrences of StampedObjectApplied
or ResourceOutputChanged
can indicate problems with trashing on a component.
To view the recent events for a workload, run:
kubectl describe workload.carto.run <workload-name> -n <workload-ns>
You create a workload, but no logs appear when you run:
tanzu apps workload tail workload-name --since 10m --timestamp
Common causes include:
To resolve this issue, run:
kubectl get clusterbuilder.kpack.io -o yaml
kubectl get image.kpack.io <workload-name> -o yaml
kubectl get build.kpack.io -o yaml
You can see the “Builder default is not ready” message in two places:
tanzu apps workload get my-app
command.This message indicates there is something wrong with the Builder (the component that builds the container image for your workload).
This message is typically encountered when the core component of the Builder (kpack
) transitions into a bad state.
Although this isn’t the only scenario where this can happen, kpack
can transition into a bad state when Tanzu Application Platform is deployed to a local kind
cluster, and especially when that kind
cluster is restarted.
kpack
by deleting the kpack-controller
and kpack-webhook
pods in the kpack
namespace. Deleting these resources triggers their recreation:
kubectl delete pods --all --namespace kpack
kubectl get pods --namespace kpack
STATUS
are Running
:
tanzu apps workload get YOUR-WORKLOAD-NAME
When you update the workload, you receive the following error:
Error: workload "default/APP-NAME" already exists
Error: exit status 1
Where APP-NAME
is the name of the app.
For example, when you run:
tanzu apps workload create tanzu-java-web-app \
--git-repo https://github.com/dbuchko/tanzu-java-web-app \
--git-branch main \
--type web \
--label apps.tanzu.vmware.com/has-tests=true \
--yes
You receive the following error
Error: workload "default/tanzu-java-web-app" already exists
Error: exit status 1
The app is running before performing a Live Update using the same app name.
To resolve this issue, either delete the app or use a different name for the app.
You might encounter an error message similar to the following when creating or updating a workload by using IDE or apps
CLI plug-in:
Error: Writing 'index.docker.io/shaileshp2922/build-service/tanzu-java-web-app:latest': Error while preparing a transport to talk with the registry: Unable to create round tripper: GET https://auth.ipv6.docker.com/token?scope=repository%3Ashaileshp2922%2Fbuild-service%2Ftanzu-java-web-app%3Apush%2Cpull&service=registry.docker.io: unexpected status code 401 Unauthorized: {"details":"incorrect username or password"}
This type of error frequently occurs when the URL set for source image
(IDE) or --source-image
flag (apps
CLI plug-in) is not Docker registry compliant.
Verify that you can authenticate directly against the Docker registry and resolve any failures by running:
docker login -u USER-NAME
Verify your --source-image
URL is compliant with Docker.
The URL in this example index.docker.io/shaileshp2922/build-service/tanzu-java-web-app
includes nesting. Docker registry, unlike many other registry solutions, does not support nesting.
To resolve this issue, you must provide an unnested URL. For example, index.docker.io/shaileshp2922/tanzu-java-web-app
When you view the logs of the tap-telemetry
controller by running kubectl logs -n tap-telemetry <tap-telemetry-controller-<hash> -f
, you see the following error:
"Error retrieving secret reg-creds on namespace tap-telemetry","error":"secrets \"reg-creds\" is forbidden: User \"system:serviceaccount:tap-telemetry:controller\" cannot get resource \"secrets\" in API group \"\" in the namespace \"tap-telemetry\""
The tap-telemetry
namespace misses a role that allows the controller to list secrets in the tap-telemetry
namespace. For more information about roles, see Role and ClusterRole Kubernetes documentation.
To resolve this issue, run:
kubectl patch roles -n tap-telemetry tap-telemetry-controller --type='json' -p='[{"op": "add", "path": "/rules/-", "value": {"apiGroups": [""],"resources": ["secrets"],"verbs": ["get", "list", "watch"]} }]'
If you upgrade from Tanzu Application Platform v0.4, the debug convention can not apply to the app run image.
The Tanzu Application Platform v0.4 lacks SBOM data.
Delete existing app images that were built using Tanzu Application Platform v0.4.
You cannot execute a build script provided as part of an accelerator.
Build scripts provided as part of an accelerator do not have the execute bit set when a new project is generated from the accelerator.
Explicitly set the execute bit by running the chmod
command:
chmod +x BUILD-SCRIPT-NAME
Where BUILD-SCRIPT-NAME
is the name of the build script.
For example, for a project generated from the “Spring PetClinic” accelerator, run:
chmod +x ./mvnw
After deploying Tanzu Application Platform workloads, Tanzu Developer Portal shows a “No live information for pod with ID” error.
The connector must discover the application instances and render the details in Tanzu Application Platform GUI.
Recreate the Application Live View connector pod by running:
kubectl -n app-live-view delete pods -l=name=application-live-view-connector
This allows the connector to discover the application instances and render the details in Tanzu Application Platform GUI.
When installing a Tanzu Application Platform profile, you receive the following error:
Internal error occurred: failed calling webhook "image-policy-webhook.signing.apps.tanzu.vmware.com": failed to call webhook: Post "https://image-policy-webhook-service.image-policy-system.svc:443/signing-policy-check?timeout=10s": service "image-policy-webhook-service" not found
The “image-policy-webhook-service” service cannot be found.
Redeploy the trainingPortal
resource.
You receive an “Increase your cluster’s resources” error.
Node pressure can be caused by an insufficient number of nodes or a lack of resources on nodes necessary to deploy the workloads.
Follow instructions from your cloud provider to scale out or scale up your cluster.
SCST - Store does not start. You see the following error in the metadata-store-app
Pod logs:
$ kubectl logs pod/metadata-store-app-* -n metadata-store -c metadata-store-app
...
[error] failed to initialize database, got error failed to connect to `host=metadata-store-db user=metadata-store-user database=metadata-store`: server error (FATAL: password authentication failed for user "metadata-store-user" (SQLSTATE 28P01))
The database password has changed between deployments. This is not supported.
Redeploy the app either with the original database password or follow the latter steps to erase the data on the volume:
Deploy metadata-store app
with kapp.
Verify that the metadata-store-db-*
pod fails.
Run:
kubectl exec -it metadata-store-db-KUBERNETES-ID -n metadata-store /bin/bash
Where KUBERNETES-ID
is the ID generated by Kubernetes and appended to the pod name.
To delete all database data, run:
rm -rf /var/lib/postgresql/data/*
This is the path found in postgres-db-deployment.yaml
.
Delete the metadata-store
app with kapp.
Deploy the metadata-store
app with kapp.
SCST - Store does not start. You see the following error in the metadata-store-app
pod logs:
$ kubectl logs pod/metadata-store-app-* -n metadata-store -c metadata-store-app
...
[error] failed to initialize database, got error failed to connect to `host=metadata-store-db user=metadata-store-user database=metadata-store`: server error (FATAL: password authentication failed for user "metadata-store-user" (SQLSTATE 28P01))
The database password has changed between deployments. This is not supported.
Redeploy the app either with the original database password or follow the latter steps to erase the data on the volume:
Deploy metadata-store app
with kapp.
Verify that the metadata-store-db-*
pod fails.
Run:
kubectl exec -it metadata-store-db-KUBERNETES-ID -n metadata-store /bin/bash
Where KUBERNETES-ID
is the ID generated by Kubernetes and appended to the pod name.
To delete all database data, run:
rm -rf /var/lib/postgresql/data/*
This is the path found in postgres-db-deployment.yaml
.
Delete the metadata-store
app with kapp.
Deploy the metadata-store
app with kapp.
When SCST - Store is deployed, deleted, and then redeployed, the metadata-store-db
pod fails to start if the database password changed during redeployment.
The persistent volume used by PostgreSQL
retains old data, even though the retention policy is set to DELETE
.
Redeploy the app either with the original database password or follow the later steps to erase the data on the volume:
Deploy metadata-store app
with kapp.
Verify that the metadata-store-db-*
pod fails.
Run:
kubectl exec -it metadata-store-db-KUBERNETES-ID -n metadata-store /bin/bash
Where KUBERNETES-ID
is the ID generated by Kubernetes and appended to the pod name.
To delete all database data, run:
rm -rf /var/lib/postgresql/data/*
This is the path found in postgres-db-deployment.yaml
.
Delete the metadata-store
app with kapp.
Deploy the metadata-store
app with kapp.
After SCST - Store is deployed, metadata-store-db
pod fails for missing volume while postgres-db-pv-claim
pvc is in the PENDING
state.
The cluster where SCST - Store is deployed does not have storageclass
defined. The provisioner of storageclass
is responsible for creating the persistent volume after metadata-store-db
attaches postgres-db-pv-claim
.
Verify that your cluster has storageclass
by running:
kubectl get storageclass
Create a storageclass
in your cluster before deploying SCST - Store. For example:
# This is the storageclass that Kind uses
kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml
# set the storage class as default
kubectl patch storageclass local-path -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
When using the Tanzu CLI to connect to AWS EKS clusters, you might see one of the following errors:
Error: Unable to connect: connection refused. Confirm kubeconfig details and try again
invalid apiVersion "client.authentication.k8s.io/v1alpha1"
The cause is Kubernetes v1.24 dropping support for client.authentication.k8s.io/v1alpha1
. For more information, see aws/aws-cli/issues/6920 in GitHub.
Follow these steps to update your aws-cli
to a supported v2.7.35 or later, and update the kubeconfig
entry for your EKS clusters:
Update aws-cli
to the latest version. For more information see AWS documentation.
Update the kubeconfig
entry for your EKS clusters:
aws eks update-kubeconfig --name ${EKS_CLUSTER_NAME} --region ${REGION}
In a new terminal window, run a Tanzu CLI command to verify the connection issue is resolved. For example:
tanzu apps workload list
Expect the command to execute without error.
When inputting shared.image_registry.project_path
, invalid repository paths are propagated.
The key shared.image_registry.project_path
, which takes input as SERVER-NAME/REPO-NAME
, cannot take “/” at the end of the string.
Do not append “/” to the end of the string.
Tanzu Application Platform v1.4 introduced Shared Ingress Issuer to secure ingress communication by default. The Certificate Authority for Shared Ingress Issuer is generated as self-signed. As a result, you might see one of the following errors:
connection refused
x509: certificate signed by unknown authority
You can choose one of the following options to mitigate the issue:
ImportantThis is the recommended option for a secure instance.
Follow these steps to trust the Shared Ingress Issuer’s Certificate Authority in Tanzu Application Platform:
Extract the ClusterIssuer’s Certificate Authority.
For default installations where ingress_issuer
is not set in tap_values.yml
, you can extract the ClusterIssuer’s Certificate Authority from cert-manager:
kubectl get secret tap-ingress-selfsigned-root-ca -n cert-manager -o yaml | yq .data | cut -d' ' -f2 | head -1 | base64 -d
If you overrode the default ingress_issuer
while installing Tanzu Application Platform, you must refer to your issuer’s documentation to extract your ClusterIssuer’s Certificate Authority instead of using the command above.
Add the certificate to the list of trusted certificate authorities by appending the certificate authority to the shared.ca_cert_data
field in your tap-values.yml
.
Reapply your configuration:
tanzu package install tap -p tap.tanzu.vmware.com -v ${TAP_VERSION} --values-file tap-values.yml -n tap-install
ImportantThis option is recommended for testing purposes only.
Follow these steps to deactivate TLS for Cloud Native Runtimes, AppSSO and Tanzu Developer Portal:
Set shared.ingress_issuer
to ""
in your tap-values.yml
:
shared:
ingress_issuer: ""
Reapply your configuration:
tanzu package install tap -p tap.tanzu.vmware.com -v ${TAP_VERSION} --values-file tap-values.yml -n tap-install