Skip to content

v0.0.18

Compare
Choose a tag to compare
@simongottschlag simongottschlag released this 12 Jul 19:40
· 8 commits to main since this release
6c9c215

What's Changed

Full Changelog: v0.0.17...v0.0.18

This release introduces support for AzureContainerJob using azcagit.

Breaking changes

  • spec.remoteSecrets[].appSecretName has been renamed spec.remoteSecrets[].secretName
  • apiVersion has been updated from aca.xenit.io/v1alpha1 to aca.xenit.io/v1alpha2 for kind AzureContainerApp

Example job:

kind: AzureContainerJob
apiVersion: aca.xenit.io/v1alpha2
metadata:
  name: foobar
spec:
  locationFilter:
    - West Europe
  remoteSecrets:
    - secretName: connection-string
      remoteSecretName: mssql-connection-string
  replacements:
    images:
      - imageName: "mcr.microsoft.com/k8se/quickstart-jobs"
        newImageTag: "latest"
  job:
    properties:
      configuration:
        scheduleTriggerConfig:
          cronExpression: "*/5 * * * *"
          parallelism: 1
          replicaCompletionCount: 1
        replicaRetryLimit: 1
        replicaTimeout: 1800
        triggerType: Schedule
      template:
        containers:
          - name: main
            image: mcr.microsoft.com/k8se/quickstart-jobs:foobar
            resources:
              cpu: 0.25
              memory: .5Gi