mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
75e696ad7b
* [wip] Add steps for cf spaces creation and deletion * Add tests * Add cf space creation groovy file * Fix shell script * Fix shell script * Add cloudFoundryCreateSpace command to command line controller * Fix format * Add cloudFoundryDeleteSpace command to command line controller * Refactor cloudFoundryDeleteSpace step * Add cloudFoundryDeleteSpace groovy file * Add missing test * Fix tests * Add docu for cloudFoundryCreateSpace step * Add docu for cloudFoundryDeleteSpace step * Code review changes Co-authored-by: Marcus Holl <marcus.holl@sap.com>
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/cloudfoundry"
|
|
"github.com/SAP/jenkins-library/pkg/command"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
|
)
|
|
|
|
func cloudFoundryDeleteSpace(config cloudFoundryDeleteSpaceOptions, telemetryData *telemetry.CustomData) {
|
|
|
|
c := command.Command{}
|
|
|
|
// reroute command output to logging framework
|
|
c.Stdout(log.Writer())
|
|
c.Stderr(log.Writer())
|
|
|
|
cf := cloudfoundry.CFUtils{
|
|
Exec: &c,
|
|
}
|
|
|
|
err := runCloudFoundryDeleteSpace(&config, telemetryData, cf, &c)
|
|
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatal("step execution failed")
|
|
}
|
|
}
|
|
|
|
func runCloudFoundryDeleteSpace(config *cloudFoundryDeleteSpaceOptions, telemetryData *telemetry.CustomData, cf cloudfoundry.CFUtils, s command.ShellRunner) (err error) {
|
|
var c = cf.Exec
|
|
|
|
cfLoginError := s.RunShell("/bin/sh", fmt.Sprintf("yes '' | cf login -a %s -u %s -p %s", config.CfAPIEndpoint, config.Username, config.Password))
|
|
|
|
if cfLoginError != nil {
|
|
return fmt.Errorf("Error while logging in occured: %w", cfLoginError)
|
|
}
|
|
|
|
defer func() {
|
|
logoutErr := cf.Logout()
|
|
if logoutErr != nil {
|
|
err = fmt.Errorf("Error while logging out occured: %w", logoutErr)
|
|
}
|
|
}()
|
|
|
|
log.Entry().Infof("Deleting Cloud Foundry Space: '%s'", config.CfSpace)
|
|
|
|
cfDeleteSpaceScript := []string{"delete-space", config.CfSpace, "-o", config.CfOrg, "-f"}
|
|
|
|
err = c.RunExecutable("cf", cfDeleteSpaceScript...)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("Deletion of cf space has failed: %w", err)
|
|
}
|
|
|
|
log.Entry().Info("Cloud foundry space has been deleted successfully")
|
|
|
|
return err
|
|
}
|