Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
Kubernetes

Kubernetes: Use CronJobs for Scheduled Tasks

- 10.07.26 - ErcanOPAK

⏰ CronJobs = Scheduled Tasks

Regular tasks need automation. CronJobs schedule tasks in Kubernetes. Backups, cleanup, reports — automatic.

📝 CronJob Setup

apiVersion: batch/v1
kind: CronJob
metadata:
    name: daily-backup
spec:
    schedule: "0 2 * * *"  # Daily at 2 AM
    jobTemplate:
        spec:
            template:
                spec:
                    containers:
                    - name: backup
                        image: alpine:latest
                        command:
                        - /bin/sh
                        - -c
                        - |
                            echo "Running backup at $(date)"
                            # Backup command here
                    restartPolicy: OnFailure

# Cron Schedule Format
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12)
# │ │ │ │ ┌───────────── day of week (0 - 6)
# │ │ │ │ │
# * * * * *

🎯 CronJob Examples

# Daily backup with retention
apiVersion: batch/v1
kind: CronJob
metadata:
    name: db-backup
spec:
    schedule: "0 3 * * *"
    successfulJobsHistoryLimit: 3
    failedJobsHistoryLimit: 3
    jobTemplate:
        spec:
            template:
                spec:
                    containers:
                    - name: backup
                        image: postgres:15
                        command:
                        - /bin/sh
                        - -c
                        - |
                            pg_dump -h postgres-service -U postgres -d mydb > /backup/backup.sql
                            gzip /backup/backup.sql
                    restartPolicy: OnFailure

# Cleanup job (weekly)
apiVersion: batch/v1
kind: CronJob
metadata:
    name: clean-temp
spec:
    schedule: "0 4 * * 0"  # Sunday at 4 AM
    jobTemplate:
        spec:
            template:
                spec:
                    containers:
                    - name: cleaner
                        image: busybox
                        command:
                        - /bin/sh
                        - -c
                        - |
                            echo "Cleaning temp files..."
                            rm -rf /tmp/*
                    restartPolicy: OnFailure

# Health check job
apiVersion: batch/v1
kind: CronJob
metadata:
    name: health-check
spec:
    schedule: "*/30 * * * *"  # Every 30 minutes
    jobTemplate:
        spec:
            template:
                spec:
                    containers:
                    - name: health
                        image: curlimages/curl
                        command:
                        - curl
                        - -f
                        - http://web-service/health
                    restartPolicy: OnFailure

# Commands
kubectl get cronjobs
kubectl get jobs
kubectl logs job/daily-backup-xxxxx
kubectl delete cronjob daily-backup

💡 CronJob Tips

  • Set appropriate schedule
  • Limit successful/failed history
  • Monitor job completion
  • Log job outputs
  • Handle failures gracefully

“CronJobs automate scheduled tasks. Backups, cleanup, reports. Essential for operations.”

— DevOps Engineer

Related posts:

Kubernetes: Use Service Accounts for Pod Authentication

Kubernetes: Understand Service Types — ClusterIP, NodePort, LoadBalancer

Kubernetes: Use Secrets to Store Sensitive Data Securely

Post Views: 1

Post navigation

WordPress: Supercharge Management with WP-CLI
Docker: Use Environment Variables with Compose

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (597)
  • Add Constraint to SQL Table to ensure email contains @ (582)
  • Average of all values in a column that are not zero in SQL (545)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (512)
  • Find numbers with more than two decimal places in SQL (460)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes
  • Ajax: Use Axios for HTTP Requests
  • JavaScript: Understand Hoisting
  • HTML: Use Web Storage for Client-Side Data
  • CSS: Use Filter Effects for Visual Magic
  • Windows 11: Unlock God Mode for All Settings

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com