Kubernetes Ops Versions Save

Running Kubernetes in production

v2.0.81

11 months ago

v2.0.80

1 year ago

v2.0.79

1 year ago
  • Apache Airflow configuration options can be attached to your Amazon Managed Workflows for Apache Airflow environment as environment variables

v2.0.78

1 year ago

This PR will remove the redundant code for the Amplify app that fixes the build issue.

v2.0.77

1 year ago
  • This PR introduces a new Terraform module to provision and manage AWS Amplify apps. This module creates the necessary Amplify app configurations, branch deployments, and domain associations required for a fully functional Amplify app.: https://github.com/ManagedKube/kubernetes-ops/pull/429

v2.0.76

1 year ago

v2.0.75

1 year ago

This Terraform configuration manages AWS infrastructure by performing the following actions:

  • Fetches a list of EC2 instances based on a specific tag and value.
  • Gathers the details of each EC2 instance, including its network interface ID.
  • Associates a specified security group with the network interface of each EC2 instance.

https://github.com/ManagedKube/kubernetes-ops/pull/428

v2.0.74

1 year ago
variable "iam_extra_policies" {
  description = "List of additional policies to create and attach to the IAM role"
  type        = list(object({
    name_prefix = string
    policy_json = string
  }))
  default     = []
}

variable "sg_extra_ids" {
  description = "List of additional sg to create and attach to Airflow"
  type        = list(string)
  default     = []
}

variable "requirements_s3_path" {
  description = "The S3 path for the MWAA requirements file."
  type        = string
  default     = ""
}

v2.0.73

1 year ago

IAM Instances Profile

An IAM Instance Profile is an AWS Identity and Access Management (IAM) entity that you can use to pass role information to an Amazon EC2 instance when the instance starts. It is a container for an IAM role that you can use to pass permissions to the EC2 instance, allowing it to access other AWS resources according to the policies attached to the role.

https://github.com/ManagedKube/kubernetes-ops/pull/425

v2.0.72

1 year ago

This module creates an AWS Secret Key so that the Key is created via IaC and then someone can ClickOps to place the actual value into the secret: #424