• Home
  • Workshops
  • Services
  • Contact
Mont-Cenis-Straße 399, Herne 44627, Germany
+49 (0) 221 9865099 0
hello@devninjas.io

Workshops

  • Docker Fundamentals
  • Kubernetes Introduction
  • CKAD Exam Prep
  • CKA Exam Prep
  • All Workshops

Services

  • Shogun · Platform Consulting
  • Mamori · Managed Retainer
  • Kensho · Platform Audit

Company

  • Contact
  • Sitemap
2026 • Coded with by DevNinjas
  • Imprint
  • Privacy
  • GTC

Introduction to Golang

After three days you will write safe, concurrent Go code and understand why Go powers Docker, Kubernetes, and Terraform. From language fundamentals through goroutines and channels to your own HTTP server and CLI tool: all hands-on in your own cloud environment.

Share via email
  • Workshop levelNo prior knowledge needed
  • Satisfied participants2340+
  • Days3
  • LanguageGerman & English
  • Workshop codeDW17

Workshop Details

What makes this workshop stand out

🎯

What you will learn and take away

After three days of Go training you will independently write Go programs for everyday cloud work. Here is what you take away:

  • Build concurrent programs with goroutines, channels, and context.Context, and detect race conditions using the race detector
  • Create HTTP servers and CLI tools with the standard library, without depending on external frameworks
  • Set up and maintain a professional project structure with go.mod, table-driven tests, and golangci-lint

All exercises run in the DevNinjas Dojo, your own cloud environment. No local setup, no hassle. You take working code home.

Want to continue? Our Kubernetes Operator Workshop shows you how to develop your own Kubernetes controllers with Go.

💼

Why the investment pays off

If your team uses Go-based cloud tools but nobody understands the code behind them, you remain dependent on external service providers. This Go training changes that:

  • Self-sufficiency with cloud tooling: your team can read, customize, and extend Go-based projects (Kubernetes operators, CLI tools, microservices)
  • Faster development cycles: Go compiles in seconds, delivers a single binary, and needs no runtime. Less infrastructure, faster deployments
  • Shorter onboarding time: Go's deliberately small language surface and uniform formatting with go fmt mean new team members can read existing code quickly

Small groups of maximum 8 participants so we can address questions from your project context.

📋

Prerequisites

Required:

  • Programming experience in another language (Python, Java, JavaScript, C#, Ruby, or similar)
  • Comfortable using a text editor or IDE
  • Basic command-line knowledge

Not required:

  • Go experience (built from scratch)
  • Linux knowledge (the cloud environment runs in the browser)

Workshop Agenda

Your Agenda at a Glance

Hands-on and structured. Every participant works in their own cloud environment. The agenda shows you what to expect each day.

Day 1: Understand Go, set up the toolchain, and write first programs

5 topics
09:00–10:00💬 Introduction Round

Go was created at Google in 2009 because existing languages could not keep up with the demands of large distributed systems. Today, Go powers Docker, Kubernetes, Terraform, and Prometheus. In this block you will explore why Go dominates cloud infrastructure and backend development, and which design decisions (fast compilation, static linking, built-in concurrency) make that possible.

You set up your Go workspace in the DevNinjas Dojo and get familiar with the essential commands: go run, go build, go mod init, and go fmt. By the end of this block you will have created your own module, compiled your first program, and understood how Go projects are organized.

goGo
12:00–13:00🥪 Lunch Break

Go is statically typed, yet feels lightweight thanks to type inference (:=). You will work with primitive types, constants, pointers, and the control structures if, switch, and for. Special attention goes to Go-specific choices: for as the only loop, switch without break, and why Go deliberately omits while and ternary operators.

Functions in Go can return multiple values, which fundamentally shapes error handling. You will write functions with named return values, variadic parameters, and closures. Then you organize code into packages and learn Go's visibility rule: uppercase = exported, lowercase = internal.

Slices and maps are the workhorses of everyday Go programming. You will learn the difference between arrays and slices, how append works internally, and why that matters for performance. For maps, you cover initialization, iteration, and when a map is the better choice over a slice. Finally: strings, runes, and UTF-8 in Go.

16:00–16:30💭 Questions & Answers

Day 2: Explore the type system, handle errors, and write concurrent code

5 topics
09:00–10:00💭 Questions & Answers

Go has no classes, but structs with methods provide everything you need for clean data models. You define custom types, attach methods to structs, and decide between pointer receivers and value receivers. Instead of inheritance, Go uses embedding: you compose structs together and see how behavior builds up compositionally.

In Go, a type implements an interface without explicitly declaring it. This principle makes Go code flexible and loosely coupled. You work with the most important standard library interfaces (io.Reader, io.Writer, fmt.Stringer, error) and write your own interfaces that enable real decoupling between packages.

12:00–13:00🥪 Lunch Break

Go has no exceptions. Instead, functions return errors as a second value. You implement the error interface, create custom error types, and use errors.Is, errors.As, and fmt.Errorf with %w for wrapping. You will also learn when panic and recover are appropriate (rarely) and how professional Go code propagates errors in a structured way.

Concurrency is Go's core feature. You start goroutines, communicate via channels, and control data flow with the select statement. Using concrete examples, you build typical patterns: fan-out for parallel processing, pipelines for multi-stage data flows, and buffered channels for controlled decoupling.

goGo

Not everything is best solved with channels. You use sync.WaitGroup to wait for goroutines and sync.Mutex for shared data access. The race detector (go run -race) helps you find hidden race conditions. Then you work with context.Context for timeouts and cancellation, the standard mechanism in every Go-based cloud API.

16:00–16:30💭 Questions & Answers

Day 3: Test code, build HTTP servers, and structure Go projects

5 topics
09:00–10:00💭 Questions & Answers

Go ships with one of the best built-in testing frameworks through its testing package. You write unit tests, use table-driven tests as Go's standard pattern, and measure performance with testing.B benchmarks. You also check code coverage with go test -cover and see how tests integrate into CI/CD pipelines.

With Go's net/http package you build a REST-capable HTTP server without any external framework. You define handler functions, use the enhanced routing from Go 1.22+, and serialize data with encoding/json. By the end of this block your own server with multiple endpoints is running in the Dojo, ready for further development.

goGo
12:00–13:00🥪 Lunch Break

Professional Go projects follow a clear structure. You work with go.mod and go get for dependency management, understand semantic versioning, and learn the established layout with cmd/, internal/, and pkg/. You also use go vet and golangci-lint to ensure code quality from the start.

Many of the best-known cloud tools (kubectl, docker, helm, terraform) are Go CLIs. You build your own command-line tool using os.Args and the flag package, implement subcommands, and work with exit codes. The result: a compiled binary with no external dependencies that you can run directly on any system.

goGo

To wrap up, you assess where Go stands in the cloud ecosystem and which directions are worth pursuing next. From database access with database/sql to gRPC for microservice communication to developing your own Kubernetes operators: you get a concrete roadmap for your next steps after the workshop.

16:00–16:30💭 Questions & Answers

Our Benefits

All from one hand!

With our high-quality trainings and workshops, you can bring yourself and your team up to date. All this with many benefits that you get from us.

👨‍💻High Practical Content
70% hands-on, 30% theory. You work continuously with real scenarios and take working code home with you. No PowerPoint battles, but directly applicable knowledge for your projects.
☁️Cloud Learning Environment
DevNinjas Dojo: Your own Kubernetes clusters and VMs for each participant in the browser. No installation, works despite VPN/proxy/firewalls. You work with dedicated resources, not in shared environments.
🥷Experienced Trainers
Full-time DevOps engineers and consultants from DevNinjas lead the workshops. Not external trainers, but specialized employees actively working on client projects and sharing real-world experience.
👥Small Groups
Maximum 8 participants per workshop. Everyone gets individual support from the trainer. Your specific questions and use cases get answered, not passed over in anonymous crowds.
🏗️Real-World Scenarios
No toy examples or hello-world demos. You work with production-grade setups: multi-container applications, CI/CD pipelines, monitoring stacks. Directly transferable to your production environments.
🎓Certification
You receive an official certificate of attendance as PDF and a verified LinkedIn badge. Document your professional development for your employer, HR, and recruiters professionally.

Testimonials

How participants experience our trainings

4.9/ 5

1047+ participant reviews · unfiltered

across all DevNinjas trainings

Trainer
5.0
Content
4.8
Hands-on
4.8

DevNinjas overall: over 1,384 participants · 207 companies · 241 workshops

Including BMW, Bundeswehr, Deutsche Bahn and many more.

"My colleagues specifically looked for a sysadmin course for Docker with another provider and had an instructor who only set up an IDE for them and then only worked on a task sheet with development tasks. I had a course with lots of background information, an instructor who had a really extensive knowledge of the whole subject matter beyond the slides, and I feel optimally informed."

Default avatar picture of DevNinjas
Johannes Bernstein
@TRIMET Gelsenkirchen SE

"The advanced Kubernetes workshop at DevNinjas really helped me grow professionally. The content was practical and excellently prepared, so even complex topics like RBAC, network policies and Ingress were conveyed in an understandable and directly applicable way. The deep expertise of the trainer was especially impressive and noticeable in every session. I can recommend this workshop to anyone who wants to use Kubernetes in production!"

Default avatar picture of DevNinjas
Marius Büttner
@Siemens AG

"From my perspective, the workshop had the right speed and an appropriate level of challenge. The subject matter was explained clearly by the instructor and practically consolidated with well-distributed exercises. Adjusting the workshop focus to the participants wishes was not a problem. Valuable practical experiences were shared, and even more specific questions were gladly answered. The instructor's professional expertise and extensive practical experience on the subject gave this workshop a special quality."

Default avatar picture of DevNinjas
S. Kaiser
@forcont business technology GmbH

"The seminar gave a very good overview of Docker administration, with a look at Kubernetes and how this knowledge simplifies everyday work. Many small, easy-to-follow examples with hands-on exercises and a focus on best practice consolidated what we learned. The instructor had an answer to every question, and for very specific questions he came back with a fitting example. The alternation between introductions and exercises was very well organised."

Default avatar picture of DevNinjas
Sebastian A.
@DMI GmbH & Co. KG

"The workshop was very informative and I could immediately spot the mistakes I had made in past Docker projects. Before, I lacked the theory and the fundamentals, so I had only been acting on best practice. Now I can write stable Dockerfiles and Docker Compose setups and secure them properly. A very good workshop that was also a lot of fun!"

Default avatar picture of DevNinjas
Timon Strangfeld

"In the workshop the most important Docker and Kubernetes topics were put together, prepared and explained superbly. The exercises fit precisely and were very well chosen in terms of difficulty. I am very satisfied with how much I learned in the five days and feel well prepared for upcoming tasks at work. Sure, you can teach yourself a lot on your own with AI tools, but without the workshop I would not have gained this overview or worked through so many exercises independently."

Default avatar picture of DevNinjas
Christine L.

"Nico is a very friendly and technically skilled instructor. He answered all questions well. You quickly notice that he combines academic expertise with many years of professional practice."

Default avatar picture of DevNinjas
Philipp van Wickevoort Crommelin
@parcIT GmbH

"The workshop gave me a very good insight into Kubernetes and made working with containers much clearer. Nico delivered the content in a practical and well-structured way, so I could quickly find my way around. The hands-on exercises in particular helped me apply what I learned directly. For anyone looking for a solid introduction to Kubernetes, this workshop is definitely recommended."

Default avatar picture of DevNinjas
Daniel Hagen
@DKB Service GmbH

"I really enjoyed the Docker & Kubernetes workshop at DevNinjas. Nico explained the complex topics around containers and orchestration in a very understandable and practical way. The mix of theory and hands-on exercises was perfect for being able to apply everything directly. I was able to take a lot away for my everyday work and now feel significantly more confident working with Docker and Kubernetes."

Default avatar picture of DevNinjas
Dominik Kneissl
@Siemens Healthineers

"The Docker workshop at DevNinjas was an all-round success. The content was clearly structured and practically delivered, including meaningful hands-on exercises. I took away a lot and feel significantly more confident working with Docker. Even more complex topics like multi-stage builds and networking were explained in an understandable way. A clear recommendation for anyone who really wants to understand Docker!"

Default avatar picture of DevNinjas
Daniel Müller
@Siemens Healthineers

"I really enjoyed the Docker workshop at DevNinjas! The content was well structured and clearly explained, even for beginners like me. The mix of theory and hands-on exercises was especially helpful for trying Docker directly. By the end, I was able to build my own images, configure containers and set up networks. Absolutely recommended for anyone who wants to learn Docker!"

Default avatar picture of DevNinjas
Pascal Schunk
@OEDIV

"The "Docker & Kubernetes Bundle" training provided me with solid, practical knowledge for everyday work and enabled me to handle Docker and Kubernetes professionally. The excellently structured material offers real added value, even beyond the workshop. The combination of technical depth and interactive delivery by the trainer rounded off the whole experience. An experience that continues to help me even after the training."

Default avatar picture of DevNinjas
Swen Strangfeld
@Bundesdruckerei GmbH

"It was fun and I learned a lot that I can actually apply directly in my company. The trainer's approach was very hands-on, and he repeatedly brought in real-world examples."

Default avatar picture of DevNinjas
Felix R.
@Dirk Rossmann GmbH

"I can recommend the Docker workshop at DevNinjas without reservation! The training was excellently structured: theory and practice complemented each other perfectly. The trainer always answered questions competently and clearly, making even more complex topics easily accessible. I was especially impressed by the professionally designed workshop materials, which are very useful as a reference even after the course. Overall, a thoroughly successful learning experience!"

Default avatar picture of DevNinjas
Lukas Graf
@Bundeswehr

"The seminar was superbly prepared, the group pleasantly small and the materials first-class. An excellent instructor who knows the subject inside out, takes time for the participants and answers questions in detail. The learning material alternated in a balanced way between theory and hands-on exercises that were timed excellently."

Default avatar picture of DevNinjas
Kevin H.
@Oest Holding GmbH

"Competent instructor. Individual approach to problems and topics. Interesting structure. Highly recommended to get an in-depth insight into the Docker world. The workshop was definitely worth it. Thanks!"

Default avatar picture of DevNinjas
H. Hillebrand
@PFSt NRW

Continue Learning

Related Workshops for You

Next Step
Kubernetes Operator Development with Go Workshop
Intermediate

Kubernetes Operator Development with Go

After three days you build custom Kubernetes operators with Go. From Kubebuilder and Custom Resource Definitions through Reconciliation, Webhooks and Testing to production-ready deployment: all hands-on in your own cluster.
3 Days€1,665.00
Tooling
Introduction to Docker Workshop
Beginner

Introduction to Docker

Learn to use Docker confidently in two days. From the container CLI through Dockerfiles and multi-stage builds to Docker Compose. You work hands-on in a dedicated cloud environment, live online in groups of up to 8 participants.
2 Days€1,110.00
Next Step
Introduction to Kubernetes Workshop
Beginner

Introduction to Kubernetes

Learn to use Kubernetes confidently in three days. From Pods and Deployments to Storage and deployment strategies. You work hands-on in your own cloud environment with kubectl, K9s, and Helm.
3 Days€1,665.00
Vincent Sturm - DevNinjas

Your Contact

Vincent Sturm

Key Account Manager

Looking for the right Kubernetes or DevOps training for your team? Vincent personally advises you on open workshops, certification prep and customized in-house training. He can also connect you with our consulting services. Get in touch with him directly.

vincent@devninjas.io
+49 221 9865099-4
WhatsApp Chat

Frequently asked questions

Yes, experience in at least one programming language (Python, Java, JavaScript, C#, or similar) is required. You should know what variables, functions, loops, and conditionals are. Go experience is not required: we start from scratch and build everything step by step.

Go has a deliberately small language surface: 25 keywords, no inheritance, no generics complexity like Java. If you can already program, you will be comfortable with the syntax within a few hours.

The adjustment is more about mindset than syntax: error handling via return values instead of exceptions, composition instead of inheritance, and concurrency as an everyday tool. We practice exactly this shift in the workshop with concrete examples, so you do not fall back into old patterns.

Go is the more common choice in cloud and DevOps environments for good reasons:

  • Simplicity: the deliberately small language surface (25 keywords, no inheritance, no ownership model) noticeably lowers onboarding time for teams
  • Fast compilation: Go builds large projects in seconds, enabling short feedback loops and fast CI/CD pipelines
  • Concurrency as a core feature: goroutines and channels make concurrent servers and workers straightforward
  • Ubiquity in the ecosystem: Docker, Kubernetes, Helm, Terraform, and Prometheus are written in Go. If you extend these tools, you work in Go

For typical cloud software and backend services, Go wins on productivity. If you need maximum memory safety and system-level performance, take a look at our Rust Training (DW29).

Both languages have their strengths in backend development:

Python offers a huge ecosystem (Django, FastAPI, Flask), rapid prototyping, and dominates data science and machine learning. However, execution speed is significantly lower than Go.

Go produces compiled binaries that run without an interpreter or runtime, and is often 10-50x faster than Python for API throughput. Concurrency is part of the language rather than a bolt-on. The web framework ecosystem is smaller, though.

In short: for cloud services, microservices, and tools with high performance demands, Go is the stronger choice. For data science, ML, and rapid prototyping, Python remains ahead.

After three days you will be able to:

  • Write, structure, and test Go programs independently
  • Build concurrent applications with goroutines and channels
  • Create HTTP servers with the standard library and serve JSON APIs
  • Build CLI tools as compiled binaries with no external dependencies

Honest note: you won't be a Go expert after three days, but you can start your own projects productively. Depth comes with practice and advanced workshops like our Kubernetes Operator Workshop.

Go is the language behind a large part of cloud infrastructure. Specifically:

  • Container platforms: Docker and containerd are written in Go
  • Orchestration: Kubernetes, Helm, Terraform, and Prometheus are built with Go
  • Backend services: companies like Google, Uber, Cloudflare, and Twitch use Go for high-performance APIs
  • CLI tools: most modern DevOps tools (kubectl, gh, hugo) are Go binaries

If you work in cloud environments, you will encounter Go code sooner or later.

Our trainings usually take place from 9:00 to 16:00, both on-site and for public remote trainings.

For corporate trainings, other time models are flexible and can be worked out together.

We recommend a maximum of 8 participants per training to ensure individual attention for each participant. For corporate trainings, arrangements for larger groups are possible.

Yes, upon completion you will receive an official certificate of attendance from DevNinjas as PDF. This confirms your successful participation and the topics covered. The certificate is perfect for conversations with your employer and your personnel file.

Additionally, you will receive a verified digital badge that you can directly embed in your LinkedIn profile (section "Licenses & Certifications"). The badge follows the Open Badges 2.0 standard and is verifiable via QR code at any time. This way you showcase your qualification and position yourself with recruiters.

Workshop Dates

Workshop dates

Choose a suitable date and book directly online. All dates are guaranteed to run.

Guaranteed to runFew spots left

17. – 19. August 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to runPopular date

07. – 09. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

07. – 09. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇬🇧English

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

21. – 23. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date

Your booking benefits

  • Guaranteed to run

    Every training date takes place: no cancellation due to low participant numbers.

  • Invoice after the workshop

    No prepayment: pay conveniently by invoice afterwards.

  • 3=2

    3-for-2 promotion*

    Register three participants, pay for two: the third seat is free.

  • Price per participant

    Transparent fixed price per participant, plus VAT.

  • No hidden costs

    Cloud lab (DevNinjas Dojo) and all training materials are included in the price.

  • Certificate & Open Badge

    Certificate of attendance plus a digital Open Badge for your LinkedIn profile included.

* Cannot be combined with other discounts.

Tailor a workshop for your team?

Custom content, flexible dates, from 1 participant.

Request