Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Delivering clearer, simpler, faster public serv...

Delivering clearer, simpler, faster public services with Cloud Foundry

Nobody interacts with government because they want to - they interact with government because they have to, and most people come away from online interactions feeling more confused than when they started.

That's why the Digital Transformation Office was created in 2015 – to change the way Australian governments deliver services, by relentlessly focusing all delivery activities on user needs, and modernising technical delivery methods.

Cloud Foundry is at the core of this technical modernisation, with the DTO providing a Cloud Foundry-based delivery platform to government for building new services. Every team gets a CD pipeline, centralised monitoring and logging, and an app runtime – driving a culture change through tools.

In this talk we'll learn about the problems with the traditional approach to digital service delivery in government, what opportunities Cloud Foundry creates for architecting the delivery of user-focused services, and how Cloud Foundry enables the DTO to help government deliver simpler, clearer, faster public services.

Lindsay Holmwood

May 26, 2016
Tweet

More Decks by Lindsay Holmwood

Other Decks in Technology

Transcript

  1. “I just wing it to be honest. As I need

    it, I research it. Which is probably not ideal. I need the big picture. I need to talk the big picture and then how to help kids navigate particular areas.” School counsellor
  2. “I was talking to the guys in Japan in September

    saying I’d be able to start (selling their label) by December [laughs]. This whole thing has been a case of scaling back my expectations.” Clothes store owner
  3. “If you can afford it, pay an expert to deal

    with the government. It’ll bury you and distract you from your own business” Retired businessman
  4. “My biggest frustration is being on hold with the immigration

    department. I need to speak to them at least once a week. Last Friday I was on hold for 1 hr 20 minutes. My longest wait has been 2 hrs 30 minutes.” Internal immigration agent
  5. • App hosting platform • Continuous Deployment service • Simple

    logging service • Simple monitoring service
  6. #!/bin/bash # Download the cf cli wget ‘https://release/cf.tar.gz' -O cf.tar.gz

    tar zxvf cf.tar.gz -C bin export PATH=$PATH:$(pwd)/bin # Login to cf (these environment variables must be exported by CI) cf login -a $CF_API -u $CF_USERNAME -p $CF_PASSWORD -o $CF_ORG -s $CF_SPACE # Deploy the app cf push <app>