Kubernetes - SecretsWhat will be the output of this command? echo -n 'admin123' | base64A=MjMx4WatRWYBYWRtaW4xMjM=Cadmin123DYWRtaW4xMjMCheck Answer
Step-by-Step SolutionSolution:Step 1: Base64 encode 'admin123'Encoding 'admin123' results in 'YWRtaW4xMjM=' with '=' padding.Step 2: Compare output with optionsYWRtaW4xMjM= matches the exact Base64 output including padding.Final Answer:YWRtaW4xMjM= -> Option BQuick Check:Base64 encode 'admin123' = 'YWRtaW4xMjM=' [OK]Quick Trick: Base64 output often ends with '=' padding [OK]Common Mistakes:Missing padding '=' charactersConfusing encoded and original stringsTruncating Base64 output
Master "Secrets" in Kubernetes9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More Kubernetes Quizzes ConfigMaps - Updating ConfigMaps and propagation - Quiz 14medium ConfigMaps - Why configuration separation matters - Quiz 13medium Health Checks and Probes - Why probes keep applications healthy - Quiz 7medium Health Checks and Probes - Readiness probe concept - Quiz 3easy Ingress - Ingress resource definition - Quiz 11easy Ingress - Host-based routing - Quiz 3easy Ingress - Ingress vs LoadBalancer Service decision - Quiz 3easy Resource Management - Vertical Pod Autoscaler concept - Quiz 11easy Scheduling - Node affinity and anti-affinity - Quiz 4medium Secrets - External secret management integration - Quiz 6medium