Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/actions/setup-cf-tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,23 @@ outputs:
runs:
using: "composite"
steps:

- name: checkout CF test repository
uses: actions/checkout@v6
with:
repository: "cloudfoundry/${{ inputs.test-repo }}"
github-server-url: https://github.com
path: "${{ inputs.test-repo }}"

- name: setup Go
uses: actions/setup-go@v6
with:
go-version-file: ./${{ inputs.test-repo }}/go.mod
cache: false

- name: setup Python
uses: actions/setup-python@v6
with:
python-version: "3"

- name: templating config
shell: bash
run: |
source temp/secrets.sh
python3 -c 'import os,sys;[sys.stdout.write(os.path.expandvars(l)) for l in sys.stdin]' < ${{ inputs.config-template }} > ${{ inputs.config-output }}
2 changes: 1 addition & 1 deletion releases/capi/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ description: Helm chart for CF API components
type: application
apiVersion: v2
# renovate: depName=capi-release image=ghcr.io/cloudfoundry/k8s/cloud-controller
appVersion: 1.224.0
appVersion: 1.225.0
2 changes: 1 addition & 1 deletion releases/capi/helm/templates/blobstore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
spec:
initContainers:
- name: init
image: "{{ .Values.registry }}/alpine:latest"
image: alpine:latest
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args:
Expand Down
2 changes: 1 addition & 1 deletion releases/routing/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ description: Helm chart for Gorouter components
type: application
apiVersion: v2
# renovate: depName=routing-release image=ghcr.io/cloudfoundry/k8s/gorouter
appVersion: 0.361.0
appVersion: 0.362.0
4 changes: 2 additions & 2 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ helm upgrade --install locket releases/diego/helm --set dbPassword=$DB_PASSWORD
helm upgrade --install diego releases/diego/helm --set dbPassword=$DB_PASSWORD --set diegoSSHCredentials=$DIEGO_SSH_CREDENTIALS --set oauthClientsSecret=$OAUTH_CLIENTS_SECRET --set-file sshProxyHostKey="$CERTS_DIR/ssh_key" --set "auctioneer.enabled=true" --set "bbs.enabled=true" --set "fileserver.enabled=true" --set "sshProxy.enabled=true"
helm upgrade --install tps-watcher releases/capi/helm --set "tpsWatcher.enabled=true"
helm upgrade --install route-emitter releases/diego/helm --set "routeEmitter.enabled=true"
helm upgrade --install k8s-rep oci://ghcr.io/cloudfoundry/helm/k8s-rep:$K8S_REP_VERSION --set-file ca_crt="$CERTS_DIR/ca.crt" --set "stacks.cflinuxfs4=ghcr.io/cloudfoundry/k8s/cflinuxfs4:1.300.0"
helm upgrade --install k8s-rep oci://ghcr.io/cloudfoundry/helm/k8s-rep:$K8S_REP_VERSION --set-file ca_crt="$CERTS_DIR/ca.crt" --set "stacks.cflinuxfs4=ghcr.io/cloudfoundry/k8s/cflinuxfs4:1.304.0"
helm upgrade --install api releases/capi/helm --set blobstorePassword=$BLOBSTORE_PASSWORD --set dbPassword=$DB_PASSWORD --set oauthClientsSecret=$OAUTH_CLIENTS_SECRET --set cloudController.sshProxyKeyFingerprint=$SSH_PROXY_KEY_FINGERPRINT --set "blobstore.enabled=true" --set "cloudController.enabled=true" --wait
helm upgrade --install cf-networking releases/cf-networking/helm --set policyServer.dbPassword=$DB_PASSWORD --set policyServer.oauthClientsSecret=$OAUTH_CLIENTS_SECRET
helm upgrade --install policy-agent oci://ghcr.io/cloudfoundry/k8s/policy-agent:$POLICY_AGENT_VERSION
helm upgrade --install policy-agent oci://ghcr.io/cloudfoundry/helm/policy-agent:$POLICY_AGENT_VERSION

kubectl get configmap coredns -n kube-system -o jsonpath='{.data.Corefile}' | grep -q "apps.internal:53" || {
echo "Patching CoreDNS to forward apps.internal to bosh-dns"
Expand Down