Skip to content

Commit

Permalink
Merge pull request #343 from openinfradev/main
Browse files Browse the repository at this point in the history
20240115 main to develop
  • Loading branch information
ktkfree authored Jan 15, 2024
2 parents 0c6a0ef + b546034 commit d34689d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy_apps/tks-primary-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ spec:
parameters:
- name: cluster_id
value: "{{ workflow.parameters.github_account }}/{{steps.sync-organization-changes.outputs.parameters.changed_primary_id}}"
when: "{{steps.sync-organization-changes.outputs.parameters.changed_primary_id}} != NONE"
when: "'{{steps.sync-organization-changes.outputs.parameters.changed_primary_id}}' != NONE"

#######################
# Template Definition #
Expand Down
2 changes: 1 addition & 1 deletion git-repo/create-cluster-repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ spec:
yq -i e ".global.clusterEndpointHost=\"$cluster_endpoint_host\"" $CLUSTER_ID/$CLUSTER_ID/tks-cluster/site-values.yaml
yq -i e ".global.clusterEndpointPort=$cluster_endpoint_port" $CLUSTER_ID/$CLUSTER_ID/tks-cluster/site-values.yaml
yq -i e ".global.keycloakIssuerUri=\"$KEYCLOAK_URL\"" $CLUSTER_ID/$CLUSTER_ID/tks-cluster/site-values.yaml
yq -i e ".global.keycloakIssuerUri=\"$KEYCLOAK_URL/realms/$CONTRACT_ID\"" $CLUSTER_ID/$CLUSTER_ID/tks-cluster/site-values.yaml
yq -i e ".global.keycloakClientId=\"$client_id\"" $CLUSTER_ID/$CLUSTER_ID/tks-cluster/site-values.yaml
;;
Expand Down
2 changes: 1 addition & 1 deletion git-repo/render-manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spec:
- name: https_enabled
container:
name: render-manifests-template
image: harbor.taco-cat.xyz/tks/decapod-render:v3.3.0
image: harbor.taco-cat.xyz/tks/decapod-render:v3.3.4
command:
- /bin/bash
- '-exc'
Expand Down
4 changes: 2 additions & 2 deletions tks-cluster/manage-internal-communication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ spec:
# Create Security Group
SG=$(aws ec2 create-security-group --group-name taco-internal --description "Security group for interanl communication among nodes" --vpc-id $VPC --output text)
# Set ingress rule
# - 2379 for kube-etcd
# - 2381 for kube-etcd metrics
# - 10249 for kube-proxy
aws ec2 authorize-security-group-ingress --group-id $SG --protocol tcp --port 2379 --cidr $CIDR
aws ec2 authorize-security-group-ingress --group-id $SG --protocol tcp --port 2381 --cidr $CIDR
aws ec2 authorize-security-group-ingress --group-id $SG --protocol tcp --port 10249 --cidr $CIDR
# Add Security Group to all node in the VPC
Expand Down

0 comments on commit d34689d

Please sign in to comment.